Android如何将时间的格式变为24小…

Android如何将时间的格式变为24小时制
<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" >

    <EditText
        android:id="@+id/input"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"/>
    
    <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="horizontal"
    tools:context=".MainActivity">
       <DatePicker 
         android:id="@+id/date"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             /> 
        
       <TimePicker 
         android:id="@+id/time"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"/> 
             
       
    </LinearLayout>

</LinearLayout>


public class MainActivity extends Activity {
private EditText input=null;
private DatePicker date=null;
private TimePicker time=null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
this.input=(EditText) super.findViewById(R.id.input);
this.date=(DatePicker) super.findViewById(R.id.date);
this.time=(TimePicker) super.findViewById(R.id.time);
this.time.setIs24HourView(true);
}


}

你可能感兴趣的:(Android如何将时间的格式变为24小…)