我该如何防止这种情况发生?我希望视图在 *** 作栏向上滑动时保持连接到底部.
can’t embed images so here’s a link
标签是底部对齐的. (你在上面看到的灰色东西是一个不同的片段被加载所以忽略它)
码:
public class MainFragment extends Fragment { public VIEw onCreateVIEw(...) { return inflater.inflate(R.layout.fragment_main); } public voID onResume() { super.onResume(); getActivity().getActionbar().hIDe(); } public voID onPause() { super.onPause(); getActivity().getActionbar().show(); }}
R.layout.fragment_main:
<relativeLayout androID:layout_wIDth="match_parent" androID:layout_height="match_parent"> <TextVIEw androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:layout_alignParentBottom="true" androID:text="test" /></relativeLayout>解决方法 在你的Apptheme风格中设置动作栏叠加模式:
< item name =“androID:windowActionbarOverlay”> true< / item>
<! - 支持库兼容性 - >
< item name =“windowActionbarOverlay”> true< / item> (more info)
并且,如果需要,在布局文件中设置填充或边距,如下所示:?androID:attr / actionbarSize
总结以上是内存溢出为你收集整理的android – 隐藏 *** 作栏会导致RelativeLayout中的底部对齐项目跳转全部内容,希望文章能够帮你解决android – 隐藏 *** 作栏会导致RelativeLayout中的底部对齐项目跳转所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)