| <?xml version="1.0" encoding="utf-8"?> |
| <!-- Copyright (C) 2011 The Android Open Source Project |
| |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --> |
| <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent" |
| android:layout_marginTop="@dimen/widget_margin_top" |
| android:layout_marginBottom="@dimen/widget_margin_bottom" |
| android:layout_marginLeft="@dimen/widget_margin_left" |
| android:layout_marginRight="@dimen/widget_margin_right" |
| android:padding="1dp" |
| android:background="#2f2f2f"> |
| |
| <LinearLayout |
| android:orientation="vertical" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent" |
| android:paddingLeft="12dp" |
| android:paddingTop="12dp" |
| android:paddingBottom="12dp" |
| android:paddingRight="12dp" |
| android:layout_gravity="center" |
| android:background="#222"> |
| |
| <TextView |
| android:id="@+id/title" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:gravity="top|left" |
| android:layout_marginBottom="10dp" |
| android:fontFamily="sans-serif" |
| android:textSize="20sp" |
| android:text="@string/widget_name" |
| android:freezesText="true"/> |
| |
| <TextView |
| android:id="@+id/instruction" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:layout_marginBottom="20dp" |
| android:fontFamily="sans-serif-light" |
| android:textSize="16sp" |
| android:freezesText="true"/> |
| |
| <TextView |
| android:id="@+id/data" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:layout_marginBottom="18dp" |
| android:layout_gravity="center_horizontal" |
| android:fontFamily="sans-serif-light" |
| android:textSize="16sp"/> |
| |
| <ListView |
| android:id="@+id/list" |
| android:layout_width="match_parent" |
| android:layout_height="0dp" |
| android:layout_weight="1" |
| android:layout_marginBottom="12dp" |
| android:padding="1dp" |
| android:background="#333" |
| android:visibility="gone"/> |
| |
| <LinearLayout |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:layout_gravity="bottom|center_horizontal" |
| android:orientation="horizontal"> |
| <Button |
| android:id="@+id/fail" |
| android:layout_marginRight="8dp" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:minWidth="100dp" |
| android:text="@string/widget_fail" /> |
| <Button |
| android:id="@+id/pass" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:minWidth="100dp" |
| android:text="@string/widget_pass" /> |
| </LinearLayout> |
| |
| </LinearLayout> |
| </FrameLayout> |