码迷,mamicode.com
首页 > 其他好文 > 详细

模拟时钟(AnalogClock)和数字时钟(DigitalClock)

时间:2015-07-23 21:21:04      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:

 

技术分享

 

Demo2\clock_demo\src\main\res\layout\activity_main.xml

 1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 2     xmlns:tools="http://schemas.android.com/tools"
 3     android:layout_width="match_parent"
 4     android:layout_height="match_parent"
 5     tools:context=".MainActivity"
 6     android:orientation="vertical"
 7     android:gravity="center_horizontal">
 8 
 9     <!--自定义模拟时钟-->
10     <AnalogClock
11         android:layout_width="wrap_content"
12         android:layout_height="wrap_content" />
13     <!--自定义数字时钟-->
14     <DigitalClock
15         android:layout_width="wrap_content"
16         android:layout_height="wrap_content"
17         android:textSize="30sp"/>
18 
19 </LinearLayout>

 

模拟时钟(AnalogClock)和数字时钟(DigitalClock)

标签:

原文地址:http://www.cnblogs.com/LY1124/p/4671541.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!