Android:导航栏置底
【摘要】
看了很多关于导航栏置底的文章 核心代码就这一句 android:layout_alignParentBottom=“true” 不过我的布局文件是include进来的,发现不生效。 外加一个Linear ...
看了很多关于导航栏置底的文章
核心代码就这一句
android:layout_alignParentBottom=“true”
不过我的布局文件是include进来的,发现不生效。
外加一个Linear Layout 发现生效了
这里记录一下
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1">
<include layout="@layout/bottom"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_gravity="bottom"
android:layout_alignParentBottom="true"/>
</LinearLayout>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
文章来源: zstar.blog.csdn.net,作者:zstar-_,版权归原作者所有,如需转载,请联系作者。
原文链接:zstar.blog.csdn.net/article/details/115579368
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)