目前,我有一些Android xml布局,其中包含多个Textview,可以输入数据。在相对布局的底部是一个按钮,其属性为android:layout_alignParentBottom="true"
,文本为“保存更改”,当键盘弹出时,该按钮有望显示在键盘上方。
但是,当单击列表底部的文本视图时,一旦聚焦,“保存更改”按钮将与聚焦的Textview重叠。
注意:可以自己手动向下滚动一下,然后查看Textview。
理想情况下,此处的功能是调整scrollTo()以有效滚动到焦点元素,并将其置于“保存更改”按钮上方的视图中。
我已尝试在清单中的activitys属性中设置此值:
android:windowSoftInputMode="adjustResize"
将相对布局包装在LinearLayout中,或者在ScrollView底部添加填充无效。
这是我当前的XML,不包括标题栏:
<ScrollView
android:id="@+id/edit_info_section"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:layout_below="@id/activity_title_border_bottom">
<LinearLayout
android:id="@+id/edit_info_form"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingBottom="@dimen/huge_padding"
android:layout_marginBottom="@dimen/huge_padding">
<TextView
android:id="@+id/account_firstname_label"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/label_firstname"
style="@style/label_text"/>
<EditText
android:id="@+id/account_firstname_field"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="text"
android:maxLines="1"
style="@style/EditTextStyle" />
<TextView
android:id="@+id/account_lastname_label"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/label_lastname"
style="@style/label_text"/>
<EditText
android:id="@+id/account_lastname_field"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="text"
android:maxLines="1"
style="@style/EditTextStyle" />
<TextView
android:id="@+id/account_phone_label"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/label_phone"
style="@style/label_text"/>
<EditText
android:id="@+id/account_phone_field"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="phone"
android:maxLines="1"
style="@style/EditTextStyle" />
<TextView
android:id="@+id/account_email_label"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/label_email"
style="@style/label_text"/>
<EditText
android:id="@+id/account_email_field"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textEmailAddress"
android:maxLines="1"
android:layout_marginBottom="@dimen/activity_vertical_margin"
style="@style/EditTextStyle" />
<TextView
android:id="@+id/account_password_label"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/label_password"
style="@style/label_text"/>
<EditText
android:id="@+id/account_password_field"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textPassword"
android:maxLines="1"
android:layout_marginBottom="@dimen/activity_vertical_margin"
style="@style/EditTextStyle" />
</LinearLayout>
</ScrollView>
<Button
android:id="@+id/save_changes"
android:background="@drawable/button_background"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:text="@string/save_changes"
android:textColor="@color/White"
android:textStyle="bold"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingTop="@dimen/activity_vertical_margin"
style="style/Widget.AppCompat.Button.Colored"/>
</RelativeLayout>
滚动到焦点文本视图的最佳方式是什么,同时仍然显示键盘上方的“保存更改”按钮?
非常感谢任何想法!
答案 0 :(得分:0)
看起来您的布局大致是:
<RelativeLayout>
<ScrollView>
...
</ScrollView>
<Button/>
</RelativeLayout>
这种结构的问题是ScrollView
填满了整个屏幕。换句话说,ScrollView
的一部分总是&#34;&#34;&#34; Button
...它只是在键盘出现时才有问题。
相反,我认为你应该使用这种布局:
<LinearLayout
android:orientation="vertical"
...>
<ScrollView
android:layout_height="0dp"
android:layout_weight="1"
...>
...
</ScrollView>
<Button/>
</LinearLayout>
通过这样做,您可以确保ScrollView
中的内容无法进入按钮,但您仍然可以将Button
一直推到底部屏幕。