3.6学习总结

今天学习了布局3FrameLayout

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<FrameLayout
android:layout_width="400dp"
android:layout_height="400dp"
android:background="#ff0000"
>
</FrameLayout>
<FrameLayout
android:layout_width="300dp"
android:layout_height="300dp"
android:foreground="@drawable/ic_launcher_foreground"      设置前景
android:foregroundGravity="right|bottom"              设置前景位置
android:background="#ffff00"
>
</FrameLayout>
<FrameLayout
android:layout_width="200dp"
android:layout_height="200dp"
android:background="#00ff00"
>
</FrameLayout>
</FrameLayout>
posted @ 2023-03-06 17:23  代不动码  阅读(13)  评论(0)    收藏  举报