赞
踩
帧布局(FrameLayout)是安卓中常用的一种布局,用于在屏幕上叠加显示视图。以下是一个简单的使用示例:
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- 第一个视图 -->
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/background_image"
android:scaleType="centerCrop"/>
<!-- 第二个视图,叠在第一个视图之上 -->
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello, FrameLayout!"
android:textSize="24sp"
android:textColor="@android:color/white"
android:layout_gravity="center"/>
</FrameLayout>
在这个示例中,FrameLayout 包含了一个 ImageView 和一个 TextView。ImageView 设置了一个背景图片,并使用 centerCrop
属性进行了缩放,以填充整个 FrameLayout。TextView 则显示在屏幕中央。
FrameLayout 的特点是它会将子视图堆叠在一起,后添加的视图会覆盖在前面添加的视图之上。因此,可以通过调整子视图的顺序来控制它们在屏幕上的显示顺序。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。