本篇博文最后修改时间:2016年8月2日,23:21
一、简介
本篇介绍基本布局——FrameLayout。
二、实验平台
系统版本:Windows7 家庭普通版 32位操作系统。
三、版权声明
博主:思跡
声明:喝水不忘挖井人,转载请注明出处。
原文地址:http://blog.csdn.net/omoiato
联系方式:315878825@qq.com
Java零基础入门交流群:541462902
四、基本布局——FrameLayout
这种布局没有任何的定位方式,所有的控件都会摆放在布局的左上角。
让我们通过例子来看一看吧,修改activity_main.xml 中的代码,如下所示:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
/>
<ImageView
android:id="@+id/image_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher"
/>
</FrameLayout>
FrameLayout 中只是放置了一个按钮和一张图片,
重新运行程序后可以看到,按钮和图片都是位于布局的左上角。
由于图片是在按钮之后添加的,因此图片压在了按钮的上面。
你可能会觉得,这个布局能有什么作用呢?
确实,它的应用场景并不多,不过在下一章中介绍碎片的时候,我们还是可以用到它的。