白日放歌须纵酒,青春作伴好还乡。这篇文章主要讲述键盘启动时,Android Fragment视图不会滚动相关的知识,希望能为你提供帮助。
我正在加载这样的片段
String tag = fragment.getClass().getSimpleName();
FragmentManager fragmentManager = getFragmentManager();
FragmentTransaction transaction = fragmentManager.beginTransaction();
transaction.replace(android.R.id.content, fragment,tag);
transaction.addToBackStack(tag);
transaction.commit();
活动已设置此属性
android:windowSoftInputMode="adjustResize"
在我看来,我在底部有一个按钮,我想要保持在键盘顶部。这就是我的片段布局文件的样子
<
RelativeLayout xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<
ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:fillViewport="true"
android:isScrollContainer="true">
<
LinearLayout..../>
<
/ScrollView>
<
Button
android:id="@+id/activate_button"
style="@android:style/Widget.DeviceDefault.Light.Button.Borderless.Small"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" />
<
/RelativeLayout>
我在此视图中有一个EditText,当我请求焦点时,软键盘出现,但视图不滚动。
【键盘启动时,Android Fragment视图不会滚动】任何人都可以告诉我为什么键盘启动时视图没有调整大小?
答案试试这个,改变父亲RelativeLayout`
android:layout_height =“wrap_content”进入android:layout_height =“match_parent”
<
RelativeLayout xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<
Button
android:id="@+id/activate_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginBottom="10dp"/>
<
/RelativeLayout>
另一答案我找到了两个对我有用的解决方案
把它放在片段的onCreate中:
getActivity().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE|WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
要么
在Activity中使用ScrollView作为FrameLayout的父级,如下所示:
<
ScrollView>
<
FrameLayout/>
<
/ScrollView>
推荐阅读
- 在switch语句中将Android中的字符串从硬编码更改为字符串资源
- Android片段文档含义
- 如何在android中的地图片段内中心线性布局()
- 在Google Apps脚本中格式化PDF附件(MailApp.sendEmail)
- 通过WhatsApp分享PDF
- Node Webkit Desktop App - 浏览器默认缓存PDF文件
- 如何在Android设备上安装可信CA证书()
- 如果您的CA不受系统信任,如何将Android应用程序连接到SSL服务器()
- 让我们加密证书与android api <20一起使用