Thursday, February 21, 2019

Show clocks

To show AnalogClock or DigitalClock, add these lines in to Xml file, no need more code.
<AnalogClock
  android:id="@+id/analog"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:layout_centerHorizontal="true" />

 <DigitalClock
  android:id="@+id/digital"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_centerHorizontal="true"
   android:layout_gravity="center_horizontal"
   android:layout_marginTop="5dp"
   android:textColor="#800000"

   android:textSize="20sp" />

No comments:

Post a Comment