我正在制作一个内部有一个带有TableLayout的LinearLayout的屏幕,以显示文本,一些EditTexts和一些按钮。
问题在于,在智能手机上,当我点击布局顶部的EditText时,底部的按钮隐藏在软键盘后面。使按钮再次出现的唯一方法是隐藏软键盘。
是否可以将我的布局设置在软键盘顶部以滚动到我的视图按钮,这样用户可以看到软键盘和按钮底部?
我尝试在TableLayout周围使用ScrollView,但它不会滚动到我的布局按钮,因此用户无法看到底部。
这是我的布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal">
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:id="@+id/linearLayoutMain"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:orientation="vertical" >
<include layout="@layout/login_container"/>
<LinearLayout
android:orientation="horizontal"
android:background="@drawable/_grey_rounded_bottom"
android:layout_width="match_parent"
android:layout_height="30dp"/>
</LinearLayout>
</ScrollView>
</LinearLayout>
提前致谢。
答案 0 :(得分:0)
我有一个类似的观点,它适合我。看我的代码:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:context=".MainActivity"
android:orientation="vertical" >
<LinearLayout ... /> <!--Have an image that I want to stay on the top -->
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content" ... >
<RelativeLayout ... >
<!-- EditText of username and EditText of password and a CheckBox -->
<LinearLayout
android:id="@+id/linearLayoutEntrar"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/checkBoxRecordarDatos"
android:gravity="center"
android:layout_marginTop="7dp"
android:weightSum="1.0">
<Button
android:id="@+id/buttonEntrar"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:text="@string/login_entrar"
android:textColor="@android:color/white"
android:textStyle="bold"
android:textSize="@dimen/textSize"
android:onClick="entrar" />
</LinearLayout>
<LinearLayout
android:id="@+id/linearLayoutJugar"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/linearLayoutEntrar"
android:layout_marginTop="7dp"
android:gravity="center"
android:weightSum="1.0" >
<Button
android:id="@+id/buttonJugar"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:onClick="jugar"
android:text="@string/login_jugar"
android:textColor="@android:color/white"
android:textSize="@dimen/textSize"
android:textStyle="bold" />
</LinearLayout>
</RelativeLayout>
</ScrollView>
</LinearLayout>
尝试更改每个布局时的高度。如果不成功,我认为问题是TableLayout
,尽量不要像我一样使用它。
答案 1 :(得分:0)
将android:windowSoftInputMode="stateVisible|adjustPan"
添加到清单中的活动代码应该可以正常工作。
答案 2 :(得分:0)
如果scrollView具有兄弟视图元素,请在ScrollView上尝试此操作
机器人:layout_width =&#34; match_parent&#34; 机器人:layout_height =&#34; 0dp&#34; 机器人:layout_weight =&#34; 1&#34;