2016-10-24 88 views
0

我有一個自定義工具欄,位於我的鍵盤頂部,允許用戶選擇EditText視圖的選項。這在縱向模式下工作正常,但我需要它在橫向模式下工作。截至目前,我的活動AndroidManifest是風景模式下鍵盤頂部的自定義工具欄

<activity 
     android:name="MyActivity" 
     android:windowSoftInputMode="stateHidden|adjustResize" /> 

這裏是XML佈局

<RelativeLayout  
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

<!-- some content, including an edit text --> 

<!-- my toolbar that is supposed to sit on top of the keyboard --> 
    <HorizontalScrollView 
     android:id="@+id/custom_toolbar" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_height="@dimen/toolbar_height" 
     android:layout_alignParentBottom="true" /> 

正如上面提到的,這個工作在畫像,但是當我切換方向爲橫向,我只看到通常的鍵盤,而我的自定義工具欄不存在

自定義工具欄應該位於鍵盤頂部,但它不是。 enter image description here

回答

0

您可以設置android:imeOptions="flagNoExtractUi"EditText以防止切換到全屏輸入模式。