[Android]【安卓】几个控件重叠放置
本篇博客已收录到我的安卓开发小结中——点击【安卓开发小结】
- 有时候需要将几个控件重叠放置,可以使用FrameLayout。
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:src="@drawable/kitchen_circle_3_demo" />
<TextView
android:layout_gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/text_color"
android:text="@string/temp"
/>
FrameLayout>