<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=".MainActivity">
<Chronometer
android:id="@+id/chronometer"
アンドロイド:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:textColor="#ff0000"
android:textSize="60dip" />
< 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="开始记時間" />
<ボタン
android:id="@+id/ btnStop"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="停止记時刻" />
<ボタン
android:id="@+id/btnReset"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="重置" / >
< ;ボタン
android:id="@+id/btn_format"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="格式化" />
</LinearLayout>
</LinearLayout>
MainActivity.java
public class MainActivity extends AppCompatActivity implements View.OnClickListener,Chronometer.OnChronometerTickListener{
private Chronometer chronometer;
private Button btn_start,bt n_stop,btn_base,btn_format;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initView();
}
private void initView() {
クロノメーター = (クロノメーター) findViewById(R.id .chronometer);
btn_start = (ボタン) findViewById(R.id.btnStart);
btn _stop = (ボタン) findViewById(R.id.btnStop);
btn_base = (ボタン) (R.id.btnリセット);
btn_format = (ボタン) findViewById(R.id.btn_format);
chronometer.setOnChronometerTickListener(this);
btn_start.setOnClickListener(this);
btn_stop.setOnClickListener(this);
btn_base.setOnClickListener(this);
btn_format.setOnClickListener(this);
}
@Override
public void onClick(View v) {
switch (v.getId()){
case R.id.btnStart:
Chronometer.start(); // StartTiming
Case R.id.btnreset:
Chronometer.setBase(SystemClock。ElapsedRealTime()); //Reset
Break; Chronometer){
string time = chronometer.getText()。toString();
"、toast.length_short).show();
実行中のスクリーンショット:
このセクションの概要:
このセクションでは、長さからわかるように、TextClock、AnalogClock、および Chronometer の 3 つのコンポーネントを簡単に紹介します。
実際、私はこれらのものをあまり使用しません。ほとんど使用しません...知っておくと良いですし、使用方法は非常に簡単です...
以上、この項はここで終わります〜ありがとうございました