android不太常用的控制項,
AutoCompleteTextView:是一種與EditText類似的視圖(實際上他是EditText的子類),只不過它還在使用者輸入時自動顯示完成建議的列表
<AutoCompleteTextView android:layout_width="fill_parent" android:layout_height="wrap_content" />
TimePicker:可以按24小時或者AM/PM模式選擇時間
<TimePicker android:id="@+id/timePicker" android:layout_width="wrap_content" android:layout_height="wrap_content" />
DatePicker:選擇指定日期
<DatePicker android:layout_width="wrap_content" android:layout_height="wrap_content" />
DigitalClock:數位方式顯示時鐘
<DigitalClock android:layout_width="wrap_content" android:layout_height="wrap_content" />
AnalogClock:顯示一個有2個指標(時針和分針)類比時鐘
<AnalogClock android:layout_width="wrap_content" android:layout_height="wrap_content" />
ImageSwitcher:圖片選取器
基本使用見:http://www.cnblogs.com/zzw1994/p/5082870.html
GridView :在一個二維的滾動網路中來顯示項目 (例如:九宮格顯示)
基本使用見:http://www.cnblogs.com/zzw1994/p/5082591.html