我有一项活动,在此活动中,windowSoftInputMode是stateAlwaysHidden
android:windowSoftInputMode="stateAlwaysHidden"
我创建了自定义Xml文件,在这个xml中,我在顶部位置有一个edittext,在底部位置有一个按钮
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff"
android:minHeight="@dimen/u_base_min_height">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff"
android:minHeight="@dimen/u_base_min_height"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="@dimen/transfer_headerView_height">
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" />
</RelativeLayout>
</LinearLayout>
<LinearLayout
android:id="@+id/bottom_layout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:orientation="vertical"
android:paddingLeft="@dimen/u_common_margin_left"
android:paddingRight="@dimen/u_common_margin_right">
<Button
android:id="@+id/u_done"
android:layout_width="fill_parent"
android:layout_height="@dimen/u_widget_height"
android:background="@drawable/rounded_corners_blue"
android:text="@string/u_register_next"
android:textColor="#ffffff"
android:textSize="@dimen/u_common_text_size" />
<View
android:layout_width="match_parent"
android:layout_height="@dimen/u_common_margin_left" />
</LinearLayout>
</RelativeLayout>
当键盘显示时我无法显示我的按钮whitch是一个底部位置,scrollview现在正在工作。
我搜索了我的问题,我试图在清单文件中更改windowSoftInputMode
android:windowSoftInputMode="adjustResize"
但是我不需要这个解决方案,因为当我的键盘显示时我的按钮移动了键盘... 我怎么能解决我的问题?如果有人知道解决方案,请帮助我 谢谢大家
答案 0 :(得分:0)
代码
下面的用法 <android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:isScrollContainer="true">
答案 1 :(得分:0)
将您的底部按钮放在滚动视图之外。制作两个单独的布局。在上部布局中放置滚动视图内容,在较低布局中放置底部按钮。