代码实现Framlayout
时间: 2023-11-11 13:04:29 浏览: 66
跨年烟花代码 叠罗汉游戏,安卓java实现,自定义Framlayout,属性动画
以下是一个简单的 FrameLayout 的代码示例:
```xml
<FrameLayout
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/image"/>
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello, World!"
android:textSize="24sp"
android:textColor="@android:color/white"
android:layout_gravity="center"/>
</FrameLayout>
```
在这个示例中,我们在 FrameLayout 中添加了一个 ImageView 和一个 TextView。由于 FrameLayout 会将子视图叠加在一起,因此 TextView 会显示在 ImageView 的上方。
注意,在 FrameLayout 中,子视图的位置是由它们在布局文件中的顺序决定的。因此,在示例中,TextView 的位置是 ImageView 的上方,因为它在布局文件中的位置在 ImageView 之后。
阅读全文