安卓学习之FrameLayout
Posted lijing94
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安卓学习之FrameLayout相关的知识,希望对你有一定的参考价值。
将《第一行代码》中的代码输入,并不能得到书上的结果,按钮无论如何都是在图片上面,后来找到http://www.cnblogs.com/DarkMaster/p/4654953.html,将button空间外面包一层
<RelativeLayout
6 android:layout_width="match_parent"
7 android:layout_height="wrap_content">
8
9 <Button
10 android:layout_width="match_parent"
11 android:layout_height="wrap_content"
12 android:text="立即投资" />
13
14 </RelativeLayout>
之后完美解决
以上是关于安卓学习之FrameLayout的主要内容,如果未能解决你的问题,请参考以下文章