我正面临Android UI的问题,当键盘出现时,底部的按钮也会弹出键盘上方。我想在键盘出现时滚动edittext(只有edittext)。这是我的xml代码,有人可以帮帮我吗? 我已经尝试过adjustPan - 它会随着屏幕一起滚动工具栏。
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ScrollView
android:id="@+id/ScrollView01"
android:fillViewport="true"
android:layout_height="0dp"
android:layout_weight="1"
android:layout_width="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:weightSum="1.0"
android:layout_height="match_parent"
android:focusable="true"
android:focusableInTouchMode="true"
android:id="@+id/l_layout">
<EditText
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:id="@+id/editText1"
android:layout_marginTop="100dp">
<requestFocus></requestFocus>
</EditText>
<EditText
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:id="@+id/editText2"
android:layout_marginTop="100dp">
</EditText>
<EditText
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:id="@+id/editText3"
android:layout_marginTop="100dp">
<requestFocus></requestFocus>
</EditText>
<EditText
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:id="@+id/editText4"
android:layout_marginTop="100dp">
<requestFocus></requestFocus>
</EditText>
<EditText
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:id="@+id/editText5"
android:layout_marginTop="100dp">
<requestFocus></requestFocus>
</EditText>
</LinearLayout>
</ScrollView>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Go next page"
android:layout_alignParentRight="true" />
</RelativeLayout>
</LinearLayout>
答案 0 :(得分:1)
您只需将活动的windowSoftInputMode标志切换为“adjustPan”即可。查看official documentation了解详情。 在android Manifest.xml文件中,添加以下内容。
<activity
...
android:windowSoftInputMode="adjustPan">
</activity>
答案 1 :(得分:1)
如果您想通过键盘隐藏按钮,请使用下面的代码,我只是编辑了您的代码 -
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ScrollView01"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/l_layout"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:focusable="true"
android:focusableInTouchMode="true"
android:orientation="vertical"
android:weightSum="1.0">
<EditText
android:id="@+id/editText1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="100dp">
<requestFocus></requestFocus>
</EditText>
<EditText
android:id="@+id/editText2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="100dp"></EditText>
<EditText
android:id="@+id/editText3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="100dp">
<requestFocus></requestFocus>
</EditText>
<EditText
android:id="@+id/editText4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="100dp">
<requestFocus></requestFocus>
</EditText>
<EditText
android:id="@+id/editText5"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="100dp">
<requestFocus></requestFocus>
</EditText>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:text="Go next page" />
</LinearLayout>
</ScrollView>
但您可以滚动显示按钮..
答案 2 :(得分:0)
这样做
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layour_alignBottom="@id/ScrollView01">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Go next page"
android:layout_alignParentRight="true" />
</RelativeLayout>
它将使您在滚动视图下方的相对位置对齐
答案 3 :(得分:0)
尝试在清单中添加以下代码
android:windowSoftInputMode="adjustResize"
答案 4 :(得分:0)
我已尝试使用
进行布局 android:windowSoftInputMode="adjustNothing"
它似乎成功运作。
答案 5 :(得分:0)
我认为你正在寻找这个。
<强> activity_main.xml中强>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.partharaj.ggpd.myapplication.MainActivity">
<ScrollView
android:isScrollContainer="true"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPersonName"
android:ems="10"
android:id="@+id/editText2"
android:hint="Name"/>
....
</LinearLayout>
</ScrollView>
<Button
android:text="Button"
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"/>
</RelativeLayout>
<强>的AndroidManifest.xml 强>
<activity
android:name=".MainActivity"
android:windowSoftInputMode="adjustPan">
...
</activity>