显示QWERTY键盘时显示线性布局时发生冲突

时间:2019-01-22 10:02:01

标签: android xml android-keypad android-input-method

我的布局看起来像这样

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <TextView
                android:id="@+id/header"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_marginRight="?android:attr/actionBarSize"
                android:layout_weight="1"
                android:fontFamily="@font/tahoma"
                android:gravity="center"
                android:text="SAMPLE HEADER"
                android:textColor="@color/dark_gray"
                android:textSize="16sp" />

        </android.support.v7.widget.Toolbar>

    </android.support.design.widget.AppBarLayout>


    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginBottom="?android:attr/actionBarSize"
        android:background="#e7e6e6"
        android:orientation="horizontal"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@id/buttons"
            android:orientation="horizontal"
            app:layout_behavior="@string/appbar_scrolling_view_behavior">




        </LinearLayout>

    </ScrollView>


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

        <View
            android:layout_width="match_parent"
            android:layout_height="4sp"
            android:layout_above="@id/bot_nav"
            android:background="@drawable/shadow" />

        <LinearLayout
            android:id="@+id/buttons"
            android:layout_width="match_parent"
            android:layout_height="?android:attr/actionBarSize"
            android:background="@color/alt_gray"
            android:orientation="horizontal">

            <LinearLayout
                android:id="@+id/btn_save"
                android:layout_width="0dip"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:background="?android:attr/selectableItemBackground"
                android:clickable="true">

                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:fontFamily="@font/tahoma"
                    android:gravity="center"
                    android:padding="17sp"
                    android:text="Save"
                    android:textColor="@color/dark_gray"
                    android:textSize="15sp" />
            </LinearLayout>

            <LinearLayout
                android:layout_width="1dp"
                android:layout_height="match_parent"
                android:layout_gravity="center"
                android:background="@color/colorPrimaryDark" />

            <LinearLayout
                android:id="@+id/btn_cancel"
                android:layout_width="0dip"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:background="?android:attr/selectableItemBackground"
                android:clickable="true">

                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:fontFamily="@font/tahoma"
                    android:gravity="center"
                    android:padding="17sp"
                    android:text="Cancel"
                    android:textColor="@color/dark_gray"
                    android:textSize="15sp" />
            </LinearLayout>

        </LinearLayout>
    </LinearLayout>
</android.support.design.widget.CoordinatorLayout>

这就是它的样子

enter image description here

有时显示的是键盘外观。

enter image description here

如何解决此问题?它在电话上是否有所不同,因为当我在其他电话上尝试时,布局还可以,但在其他电话上则不行。我该如何解决这个问题?我知道文件上有很多不正确的布局。对此表示抱歉。

0 个答案:

没有答案