there is some way to put an EditText inside <Keyboard>
in Android Studio. I have reviewed different documentation but I have not found a solution.
<Keyboard xmlns:android="http://schemas.android.com/apk/res/android"
android:keyWidth="10%p"
android:horizontalGap="0px"
android:verticalGap="0px"
android:keyHeight="60dp">
<Row android:rowEdgeFlags="top">
<Key android:keyLabel="CONNECTION" android:keyWidth="100%p" android:codes="1234"/>
<EditText android:id="@+id/edtInput"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="1"
android:inputType="textShortMessage|textAutoCorrect|textCapSentences|textMultiLine"
android:imeOptions="actionSend|flagNoEnterAction"
android:maxLines="4"
android:maxLength="2000"
android:hint="@string/compose_hint"/>
</Row>
</Keyboard>
The only thing that is on my keyboard is
<Key android:keyLabel="CONNECTION" android:keyWidth="100%p" android:codes="1234"/>