我有一個timepicker,一切正常,但問題是,我不能使它看起來像設計者希望。現在它看起來像這樣: 如何在TimePicker關閉鍵盤圖標?
我需要隱藏按鈕下的這個鍵盤圖標。我該怎麼做?這只是一個原型,所以這裏只是它的XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:tag="ww">
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Time"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TimePicker
android:id="@+id/timePicker"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:amPmBackgroundColor="#6400AA"
android:numbersSelectorColor="#6400AA" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:orientation="horizontal">
<Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Cancel"
android:textColor="#6400AA" />
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="OK"
android:textColor="#6400AA" />
</LinearLayout>
</LinearLayout>
改變它,我不相信你可以刪除圖標,它是在AndroidØ – tyczj
@tyczj我可能會改變它在Android的早期版本的用戶界面的一部分?說它5.1 – VolodymyrH
這圖標是不存在於以前的版本,它的存在使當時的手工編輯更加明顯,你可以隨時點擊時間,並改變它,但它wasnt明顯的,你能做到這一點 – tyczj