Android开发之时间选择器TimePicke…

Android开发之时间选择器TimePicker组件的使用


     <RelativeLayout 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"
    tools:context=".MainActivity" >

    <TextView
        android:id="@+id/text1"
        android:layout_width="fill_parent"
        android:layout_marginTop="10px"
        android:layout_height="wrap_content"
        android:text="时间选择器" />
    
    <TimePicker 
        android:id="@+id/tp1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="30px"
        />
     

</RelativeLayout>

我们src下边的java
public class MainActivity extends Activity {
private TimePicker tp=null;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
this.tp=(TimePicker)super.findViewById(R.id.tp1);
//默认时间格式为12小时制的,这里我们改成24小时的制
this.tp.setIs24HourView(true);
//设置为22点22分
this.tp.setCurrentHour(22);
this.tp.setCurrentMinute(22);
}
}


Android开发之时间选择器TimePicker组件的使用


你可能感兴趣的:(Android开发之时间选择器TimePicke…)