1. TextClock 文本时钟
TextClock 可以以字符串格式显示当前的日期和时间
用法非常简单,没有什么值得说的,android:format24Hour 属性的参数就是一个时间格式化字符串,之后可能会单独写一篇文章
示例代码
1 2 3 4 5
| <TextClock android:layout_width="wrap_content" android:layout_height="wrap_content" android:format24Hour="yyyy-MM-dd HH:mm:ss" />
|
2. AnalogClock 模拟时钟
AnalogClock 可以以模拟时钟的样式显示当前的时间
除了基本使用方法之外,AnalogClock 还有三个自定义样式属性
属性 |
参数 |
作用 |
android:dial |
image |
时钟背景(表盘) |
android:hand_hour |
image |
时针 |
android:hand_minute |
image |
分针 |
示例代码
1 2 3 4 5
| <AnalogClock android:layout_width="200dp" android:layout_height="200dp" android:layout_gravity="center" />
|
3. Chronometer 计时器
示例代码
activity_main.xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
| <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity">
<LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical">
<Chronometer android:id="@+id/chronometer" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" android:textColor="#555555" android:textSize="60sp" />
<LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_margin="10dip" android:orientation="horizontal">
<Button android:id="@+id/btnStart" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1" android:text="开始记时" />
<Button android:id="@+id/btnStop" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1" android:text="停止记时" />
<Button android:id="@+id/btnReset" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1" android:text="重置" /> </LinearLayout>
</LinearLayout>
</LinearLayout>
|
MainActivity.java
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| public class MainActivity extends AppCompatActivity implements View.OnClickListener {
private Chronometer chronometer;
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main);
chronometer = findViewById(R.id.chronometer);
findViewById(R.id.btnStart).setOnClickListener(this); findViewById(R.id.btnStop).setOnClickListener(this); findViewById(R.id.btnReset).setOnClickListener(this); }
@Override public void onClick(View v) { switch (v.getId()) { case R.id.btnStart: chronometer.start(); break; case R.id.btnStop: chronometer.stop(); break; case R.id.btnReset: chronometer.setBase(SystemClock.elapsedRealtime()); break; } } }
|