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>

浙公网安备 33010602011771号