在Android Studio中的<keyboard>内添加EditText

时间:2019-05-27 20:55:31

标签: android keyboard

有一些方法可以在Android Studio中将EditText放入<Keyboard>内。我查看了其他文档,但没有找到解决方法。

<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>

键盘上唯一的东西是

<Key android:keyLabel="CONNECTION" android:keyWidth="100%p"  android:codes="1234"/>

0 个答案:

没有答案