Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android系統教程 >> Android開發教程 >> Android開發入門(十一)選擇控件 11.1 TimePicker

Android開發入門(十一)選擇控件 11.1 TimePicker

編輯:Android開發教程

使用TimePicker,可以讓用戶去選擇一天中的事件,包括24小時制和AM/PM制。下面的例子將會展示如何 使用TimePicker。

1. 創建一個工程:BasicViews4。

2. main.xml中的代碼。

<?xml version="1.0" encoding="utf-8"?>     
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:orientation="vertical" >     
         
<Button android:id="@+id/btnSet" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="I am all set!" 
    android:onClick="onClick" />     
         
<TimePicker android:id="@+id/timePicker" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" />     
         
</LinearLayout>

3、BasicViews4Activity.java中的代碼。

public class BasicViews4Activity extends Activity {     
    TimePicker timePicker;     
         
    int hour, minute;     
    int yr, month, day;     
         
         
    /** Called when the activity is first created. */ 
    @Override 
    public void onCreate(Bundle savedInstanceState) {     
        super.onCreate(savedInstanceState);     
        setContentView(R.layout.main);     
         
        timePicker = (TimePicker) findViewById(R.id.timePicker);     
       
        timePicker.setIs24HourView(true);     
         
    }     
         
    public void onClick(View view) {     
        Toast.makeText(getBaseContext(),     
                "Time selected:" + timePicker.getCurrentHour() +     
                ":" + timePicker.getCurrentMinute(),     
                Toast.LENGTH_SHORT).show();     
    }     
         
}

4、F11調試。

查看本欄目更多精彩內容:http://www.bianceng.cn/OS/extra/

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved