弹出输入法时,底部布局跟随输入法移动至输入法顶部

来源:互联网 发布:淘宝的广告价位图 编辑:程序博客网 时间:2024/06/07 01:43

<?xml version="1.0" encoding="utf-8"?><LinearLayout        xmlns:android="http://schemas.android.com/apk/res/android"        android:orientation="vertical"        android:layout_width="match_parent"        android:layout_height="match_parent">        <ScrollView            android:layout_width="match_parent"            android:layout_height="0dp"            android:layout_weight="99">                <EditTextView                    android:layout_width="match_parent"                    android:layout_height="wrap_content"                    android:text="@string/test"/>        </ScrollView>        <Button            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:layout_weight="1"            android:text="@string/save"/></LinearLayout>

0 0
原创粉丝点击