Files
rk35xx-android14/frameworks/base/tests/RenderThreadTest/res/layout/activity_sub.xml
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

39 lines
1.2 KiB
XML

<?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" >
<View
android:id="@+id/bg_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/starry_night_bg" />
<LinearLayout
android:id="@+id/my_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<View
android:id="@+id/from_left"
android:layout_width="match_parent"
android:layout_height="48dip"
android:background="#7000FF00" />
<View
android:id="@+id/from_right"
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_margin="80dip"
android:layout_weight="1"
android:background="#90FF0000" />
<View
android:id="@+id/from_left"
android:layout_width="match_parent"
android:layout_height="48dip"
android:background="#7000FF00" />
</LinearLayout>
</FrameLayout>