答えて

1

ような何か。

  1. 別のViewGroup内にカスタムKeyboardViewを入れ、例:

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
         android:layout_width="match_parent" 
         android:layout_height="wrap_content" 
         android:orientation="vertical" 
         \> 
    
    <TextView 
        android:layout_height="wrap_content" 
        android:layout_width="wrap_content" 
        android:text="Wazup?!" 
        /> 
    
    <org.dodroid.customime.CustomKeyboardView 
        android:id="@+id/keyboard" 
        android:layout_width="match_parent" 
        android:layout_height="wrap_content" 
        android:layout_alignParentBottom="true" 
        android:keyBackground="@drawable/samplekeybackground" 
        android:keyPreviewLayout="@layout/preview" 
        android:popupLayout="@layout/keyboard_popup_keyboard" 
        /> 
    </LinearLayout> 
    

代わりのTextViewのは、カスタムパネルとすることができます。

  1. トップにもう1つの行をナビゲーションボタンで作成します。
関連する問題