UI控件之Date & Time组件(上)

(一)概述
这里写图片描述
(二)TextClock(文本时钟)
这里写图片描述
这里写图片描述
这里写图片描述
这里写图片描述
这里写图片描述
这里写图片描述
这里写图片描述
这里写图片描述
这里写图片描述
另外,SDK必须大于等于17才可以额;

(三)AnalogClock(模拟时钟)
就像这样:
这里写图片描述
这里写图片描述
这里写图片描述
示例代码如下:
这里写图片描述

(四)Chronometer(计时器)
这里写图片描述
使用示例:
布局代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="com.example.android_analogclock.MainActivity" >

    <Chronometer 
        android:id="@+id/chronometer"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:textColor="#ff0000"
        android:textSize="60dp"/>

    <LinearLayout android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="10dp"
        android:orientation="horizontal">
        <Button 
            android:id="@+id/btnStart"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="开始计时"/>
        <Button 
             android:id="@+id/btnStop"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="停止计时"/>
        <Button 
             android:id="@+id/btnReset"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="重置"/>
        <Button 
             android:id="@+id/btn_format"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="格式化"/>

    </LinearLayout>

</LinearLayout>

java代码:

public class MainActivity3 extends Activity  implements OnClickListener , OnChronometerTickListener{

    private Chronometer chronometer;
    private Button btn_start , btnStop,btnReset,btn_format;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main3);
        initView();
    }

    private void initView() {
        chronometer = (Chronometer) findViewById(R.id.chronometer);
        btn_start  = (Button) findViewById(R.id.btnStart);
        btnStop  = (Button) findViewById(R.id.btnStop);
        btnReset  = (Button) findViewById(R.id.btnReset);
        btn_format= (Button) findViewById(R.id.btn_format);

        chronometer.setOnChronometerTickListener(this);
        btn_start.setOnClickListener(this);
        btnStop.setOnClickListener(this);
        btnReset.setOnClickListener(this);
        btn_format.setOnClickListener(this);
    }

    @Override
    public void onChronometerTick(Chronometer chronometer) {
            String time = chronometer.getText().toString();
            if (time.equals("00:00")) {
                Toast.makeText(MainActivity3.this, "时间到了~", Toast.LENGTH_SHORT).show();
            }
    }

    @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;
        case R.id.btn_format:
            chronometer.setFormat("Time: %s");//更改时间显示格式
            break;
        default:
            break;
        }
    }

}

运行结果:
这里写图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值