Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android時間選擇器、日期選擇器實現代碼

Android時間選擇器、日期選擇器實現代碼

編輯:關於Android編程

本文為大家分享了兩款選擇器,一款可以針對時間進行選擇、一款可以針對日期進行選擇,供大家參考,具體內容如下

一、時間選擇器
1.1.布局

<?xml version="1.0" encoding="utf-8"?> 
<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.rj141.sb.kongjian.DateActivity"> 
 
 <LinearLayout 
 android:orientation="horizontal" 
 android:layout_width="match_parent" 
 android:layout_height="wrap_content"> 
 <TextView 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:textSize="20dp" 
  android:text="幾點吃飯:" 
  /> 
 <TextView 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:textSize="20dp" 
  android:id="@+id/tv" /> 
 </LinearLayout> 
 <Button 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:text="時間" 
 android:id="@+id/btndate" /> 
</LinearLayout> 

1.2.Java文件

public class DateActivity extends ActionBarActivity { 
 
 private Button btn; 
 private TextView tv; 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
 super.onCreate(savedInstanceState); 
 setContentView(R.layout.activity_date); 
 
 btn=(Button)this.findViewById(R.id.btndate); 
 tv= (TextView) this.findViewById(R.id.tv); 
 btn.setOnClickListener(new View.OnClickListener() { 
  @Override 
  public void onClick(View v) { 
  new TimePickerDialog(DateActivity.this, new TimePickerDialog.OnTimeSetListener() { 
   @Override 
   public void onTimeSet(TimePicker view, int hourOfDay, int minute) { 
   tv.setText(String.format("%d:%d",hourOfDay,minute)); 
   } 
  //0,0指的是時間,true表示是否為24小時,true為24小時制 
  },0,0,true).show(); 
  } 
 }); 
 } 
} 

效果圖:

二、日期選擇器
2.1.activity.xml

<?xml version="1.0" encoding="utf-8"?> 
<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.rj141.sb.kongjian.DateActivity"> 

<TextView 
android:layout_width="match_parent" 
android:layout_height="wrap_content" 
android:textSize="20dp" 
android:id="@+id/tv" /> 

<Button 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:text="日歷" 
android:id="@+id/btndate" /> 
</LinearLayout> 

2.2.DateActivity.class

public class DateActivity extends ActionBarActivity { 

private Button btn; 
private TextView tv; 
@Override 
protected void onCreate(Bundle savedInstanceState) { 
super.onCreate(savedInstanceState); 
setContentView(R.layout.activity_date); 

btn=(Button)this.findViewById(R.id.btndate); 
tv= (TextView) this.findViewById(R.id.tv); 
btn.setOnClickListener(new View.OnClickListener() { 
@Override 
public void onClick(View v) { 
new DatePickerDialog(DateActivity.this, new DatePickerDialog.OnDateSetListener() { 
@Override 
public void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth) { 
tv.setText("您的出生日期是:"+String.format("%d-%d-%d",year,monthOfYear+1,dayOfMonth)); 
} 
},2000,1,2).show(); 
} 
}); 
} 
} 
DatePickerDialog日歷選擇器的對話框,監聽為OnDateSetListener(){..}

效果圖:

以上就是兩款Android時間選擇器、Android日期選擇器的實現代碼,希望對大家學習Android軟件編程有所幫助。

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