Клавиатура продолжает блокировать мой взгляд ... как это исправить? - PullRequest
0 голосов
/ 04 октября 2018

моя клавиатура продолжает блокировать мой обзор.Можно ли как-то это исправить?

enter image description here

Когда я нажимаю Описание 2, чтобы вставить что-то, Но клавиатура так раздражает ... Я не могупосмотрите, что я печатаю ... На самом деле это не одна страница.Другие страницы также, как это.Я не вижу, что я печатаю, Только когда я закрываю клавиатуру, тогда все в порядке.

enter image description here

Воткод

<LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <TableLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center|top">

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="horizontal">

                <ListView
                    android:id="@+id/listView1"
                    android:layout_width="match_parent"
                    android:layout_height="300dp"></ListView>
            </LinearLayout>

            <TableRow
                android:layout_width="match_parent"
                android:layout_height="match_parent">

                <TextView
                    android:layout_width="60dp"
                    android:layout_height="wrap_content"
                    android:text="DATE:" />

                <TextView
                    android:id="@+id/Select_Date"
                    android:layout_width="60dp"
                    android:layout_height="38dp"
                    android:text="SELECT DATE"
                    android:textSize="19dp"
                    />

            </TableRow>

            <TableRow
                android:layout_width="match_parent"
                android:layout_height="match_parent">

                <TextView
                    android:layout_width="60dp"
                    android:layout_height="wrap_content"
                    android:text="TXN NO:" />

                <TextView
                    android:id="@+id/D_Txn"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:ems="10" />
            </TableRow>

            <TableRow
                android:layout_width="match_parent"
                android:layout_height="match_parent">


                <TextView
                    android:layout_width="60dp"
                    android:layout_height="wrap_content"
                    android:text="NAME:" />

                <EditText
                    android:id="@+id/D_Name"
                    android:layout_width="273dp"
                    android:layout_height="wrap_content"
                    android:ems="10"
                    android:inputType="textPersonName" />
            </TableRow>


            <TableRow
                android:layout_width="match_parent"
                android:layout_height="match_parent">

                <TextView
                    android:layout_width="72dp"
                    android:layout_height="wrap_content"
                    android:text="AMOUNT:" />

                <EditText
                    android:id="@+id/D_Amount"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:ems="10"
                    android:inputType="number" />
            </TableRow>

            <TableRow
                android:layout_width="match_parent"
                android:layout_height="match_parent">

                <TextView
                    android:layout_width="110dp"
                    android:layout_height="wrap_content"
                    android:text="DESCRIPTION1:" />

                <Spinner
                    android:id="@+id/D_Description"
                    android:layout_width="match_parent"
                    android:layout_height="35dp"
                    android:background="@android:drawable/btn_dropdown"
                    android:spinnerMode="dropdown" />
            </TableRow>

            <TableRow
                android:layout_width="match_parent"
                android:layout_height="match_parent">

                <TextView
                    android:layout_width="60dp"
                    android:layout_height="wrap_content"
                    android:text="DESCRIPTION2:" />

                <EditText
                    android:id="@+id/Ds_Description"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:ems="10"
                    android:inputType="textPersonName" />


            </TableRow>
        </TableLayout>
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dip"
        android:layout_weight="1"
        android:gravity="center|bottom"
        android:orientation="horizontal">

        <TableLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <TableRow>

                <Button
                    android:textColor="@color/my_color_state"
                    android:id="@+id/Db_New"
                    android:layout_width="0dp"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:text="NEW" />

                <Button
                    android:textColor="@color/my_color_state"
                    android:id="@+id/Db_Save"
                    android:layout_width="0dp"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:enabled="false"
                    android:text=   "SAVE" />
            </TableRow>

            <TableRow>

                <Button
                    android:textColor="@color/my_color_state"
                    android:id="@+id/Db_Print"
                    android:layout_width="0dp"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:text="PRINT" />

                <Button
                    android:textColor="@color/my_color_state"
                    android:id="@+id/Db_Back"
                    android:layout_width="0dp"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:text="BACK" />
            </TableRow>
        </TableLayout>
    </LinearLayout>

Ответы [ 2 ]

0 голосов
/ 04 октября 2018

Перейдите в свой манифест и добавьте эту строку для выбранного действия

android:windowSoftInputMode="adjustPan"

Пример:

    <activity
        android:name=".Activity.MainActivity"
        android:label="@string/title_activity_main"
        android:windowSoftInputMode="adjustPan">
0 голосов
/ 04 октября 2018

В своем манифесте добавьте эту строку к своей деятельности:

android:windowSoftInputMode="adjustResize"

Она корректирует вашу деятельность при изменении доступного размера макета.

РЕДАКТИРОВАТЬ:

Вам также придется добавить ScrollView поверх основного контейнера в вашем случае.

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