You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.3 KiB
37 lines
1.3 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:background="#66ff0000"
|
|
tools:context="com.example.projection.ProjectionActivity"
|
|
tools:ignore="MergeRootFrame">
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="100dp"
|
|
android:textSize="50sp"
|
|
android:text="TextView"/>
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="100dp"
|
|
android:clipChildren="false">
|
|
<view class="com.android.test.hwui.ProjectionActivity$ProjectedView"
|
|
android:id="@+id/projection"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:textSize="50sp"
|
|
android:text="TextView"/>
|
|
</FrameLayout>
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="100dp"
|
|
android:textSize="50sp"
|
|
android:text="TextView"/>
|
|
</LinearLayout> |