Приложение не загружается при попытке использовать клавиатуру в Android Studio - PullRequest
0 голосов
/ 10 февраля 2019

Мое приложение не загружается теперь, когда я добавил клавиатуру к фрагменту.Он продолжает говорить, что приложение не удалось загрузить.Без клавиатуры работает просто отлично.Вот код макета:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#00FF00"
    android:orientation="vertical">

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="This is fragment #2"
        android:textColor="#000000"
        android:textSize="25sp" />

    <Button
    android:id="@+id/btnGetText"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Get text in Fragment #1"
    android:textColor="#000000"
    android:onClick="onClick" />

    <Keyboard
        android:keyWidth="32px"
        android:keyHeight="50px"
        android:horizontalGap="2px"
        android:verticalGap="2px" >
        <Row android:keyWidth="32px" >
            <Key android:keyLabel="Q" />

        </Row>

    </Keyboard>

</LinearLayout>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...