2011-06-03 17:06:29 -07:00
|
|
|
<?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.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="wrap_content"
|
2011-07-03 03:07:07 -07:00
|
|
|
android:layout_height="wrap_content"
|
2011-07-15 15:21:44 -07:00
|
|
|
android:padding="3mm">
|
2011-06-03 17:06:29 -07:00
|
|
|
|
|
|
|
<ImageView android:id="@+id/icon"
|
|
|
|
android:layout_width="@android:dimen/app_icon_size"
|
|
|
|
android:layout_height="@android:dimen/app_icon_size"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_marginRight="1mm"/>
|
|
|
|
|
|
|
|
<TextView android:id="@+id/warning"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_below="@id/icon"
|
2011-07-03 03:07:07 -07:00
|
|
|
android:padding="3mm"
|
2011-06-03 17:06:29 -07:00
|
|
|
android:text="@string/warning"
|
|
|
|
android:textSize="18sp"/>
|
|
|
|
|
|
|
|
<TextView android:id="@+id/prompt"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_toRightOf="@id/icon"
|
|
|
|
android:layout_above="@id/warning"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:textSize="20sp"/>
|
|
|
|
|
|
|
|
<CheckBox android:id="@+id/check"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_below="@id/warning"
|
|
|
|
android:text="@string/accept"
|
2011-07-03 03:07:07 -07:00
|
|
|
android:textSize="20sp"
|
2011-06-03 17:06:29 -07:00
|
|
|
android:checked="false"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|