aboutsummaryrefslogtreecommitdiff
path: root/apps/SdkController/res/layout/multitouch.xml
blob: 0aec0fbd0cd2fce81703b1fe67e3df6943f147a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
      xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent" >

    <com.android.tools.sdkcontroller.views.MultiTouchView
         android:id="@+id/imageView"
         android:layout_width="fill_parent"
         android:layout_height="fill_parent" />

    <!-- Placeholder status text. Becomes visibility=gone when empty. -->
    <TextView
        android:id="@+id/textStatus"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:textAppearance="?android:attr/textAppearanceSmall" />

    <!-- Placeholder error text. Becomes visibility=gone when empty. -->
    <TextView
        android:id="@+id/textError"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/textStatus"
        android:gravity="center_horizontal"
        android:background="#F00F"
        android:padding="8dp"
        android:textAppearance="?android:attr/textAppearanceSmall"
        android:textColor="#FFF0" />

</RelativeLayout>