Android輸入框軟鍵盤間距


https://blog.csdn.net/m0_37388625/article/details/106025262

純筆記,無任何高科技,為了軟鍵盤彈出時與輸入框保持一點點的距離,使用ScrollView+LinearLayout包裹住輸入框,ScrollView+LinearLayout的高度稍微比輸入框高一點即可(無需java代碼控制),效果如下圖:

 

 

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <ScrollView
        android:layout_gravity="bottom"
        android:layout_width="match_parent"
        android:padding="5dp"
        android:background="@color/colorPrimaryDark"
        android:layout_height="60dp">

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

            <Button
                android:text="Click"
                android:layout_width="100dp"
                android:layout_height="match_parent" />

            <LinearLayout
                android:id="@+id/line_comment"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_gravity="bottom"
                android:background="#f00"
                android:focusable="true"
                android:visibility="visible"
                android:focusableInTouchMode="true"
                android:gravity="center_vertical"
                android:orientation="vertical">
                <EditText
                    android:id="@+id/etComment"
                    android:layout_width="match_parent"
                    android:layout_height="40dp"
                    android:layout_marginLeft="12dp"
                    android:layout_marginTop="8dp"
                    android:layout_marginBottom="8dp"
                    android:layout_weight="1"
                    android:inputType="text"
                    android:background="#0f0"
                    android:hint="輸入框hint..."
                    android:layout_marginRight="12dp"
                    android:imeOptions="actionSend"
                    android:maxLength="100"
                    android:paddingLeft="12dp"
                    android:textSize="16sp" />

                <View
                    android:id="@+id/viewKeyboard"
                    android:background="#00f"
                    android:layout_width="match_parent"
                    android:layout_height="0dp" />
            </LinearLayout>
        </LinearLayout>
    </ScrollView>
</FrameLayout>

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM