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.
98 lines
3.7 KiB
98 lines
3.7 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2018 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="#fff">
|
|
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:paddingLeft="4dp"
|
|
android:paddingTop="4dp"
|
|
android:paddingBottom="4dp"
|
|
android:paddingRight="4dp"
|
|
android:layout_gravity="center"
|
|
android:background="#fff">
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="top|left"
|
|
android:layout_marginBottom="8dp"
|
|
android:fontFamily="sans-serif"
|
|
android:textSize="16sp"
|
|
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="12dp"
|
|
android:fontFamily="sans-serif-light"
|
|
android:textSize="14sp"
|
|
android:freezesText="true"/>
|
|
|
|
<TextView
|
|
android:id="@+id/data"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="12dp"
|
|
android:layout_gravity="center_horizontal"
|
|
android:fontFamily="sans-serif-light"
|
|
android:textSize="14sp"/>
|
|
|
|
<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="#fff"
|
|
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>
|