2017-10-17 89 views
0

我有一個timepicker,一切正常,但問題是,我不能使它看起來像設計者希望。現在它看起來像這樣: screenshot如何在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> 
+0

改變它,我不相信你可以刪除圖標,它是在AndroidØ – tyczj

+0

@tyczj我可能會改變它在Android的早期版本的用戶界面的一部分?說它5.1 – VolodymyrH

+1

這圖標是不存在於以前的版本,它的存在使當時的手工編輯更加明顯,你可以隨時點擊時間,並改變它,但它wasnt明顯的,你能做到這一點 – tyczj

回答

1

至於我可以告訴你不能刪除這個圖標,它是在Android O.

的圖標UI的部分有使當時的手工編輯更加明顯,因爲在以前的版本中,它是不是很明顯,你可以點擊時間,並通過鍵盤

0

嘗試使用:

timePicker.setDescendantFocusability(TimePicker.FOCUS_BLOCK_DESCENDANTS); 

您也可以在XML中使用android:descendantFocusability="blocksDescendants"

+0

這是行不通的。 – VolodymyrH