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.
33 lines
1.2 KiB
33 lines
1.2 KiB
<?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>
|