首页 > 代码库 > 安卓学习之FrameLayout

安卓学习之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