blob: b6e4c5ef6ad2eb56481f1db625cb187c0bb7e600 [file] [log] [blame]
Chris Craikf533e942014-01-14 22:35:37 -08001<?xml version="1.0" encoding="utf-8"?>
Chris Craik1df26442014-02-05 16:50:41 -08002<LinearLayout
Chris Craikf533e942014-01-14 22:35:37 -08003 xmlns:android="http://schemas.android.com/apk/res/android"
4 xmlns:tools="http://schemas.android.com/tools"
5 android:id="@+id/container"
6 android:layout_width="match_parent"
7 android:layout_height="match_parent"
8 android:orientation="vertical"
Chris Craik1df26442014-02-05 16:50:41 -08009 android:background="#66ff0000"
Chris Craikf533e942014-01-14 22:35:37 -080010 tools:context="com.example.projection.ProjectionActivity"
11 tools:ignore="MergeRootFrame">
12 <TextView
13 android:layout_width="match_parent"
14 android:layout_height="100dp"
15 android:textSize="50sp"
16 android:text="TextView"/>
17 <FrameLayout
18 android:layout_width="match_parent"
19 android:layout_height="100dp"
20 android:clipChildren="false">
21 <view class="com.android.test.hwui.ProjectionActivity$ProjectedView"
22 android:id="@+id/projection"
23 android:layout_width="match_parent"
24 android:layout_height="match_parent"/>
25 <TextView
26 android:layout_width="match_parent"
27 android:layout_height="match_parent"
28 android:textSize="50sp"
29 android:text="TextView"/>
30 </FrameLayout>
31
32 <TextView
33 android:layout_width="match_parent"
34 android:layout_height="100dp"
35 android:textSize="50sp"
36 android:text="TextView"/>
Chris Craik1df26442014-02-05 16:50:41 -080037</LinearLayout>