58 lines
2.8 KiB
XML
Executable File
58 lines
2.8 KiB
XML
Executable File
<?xml version="1.0" encoding="utf-8"?><!--
|
|
Copyright (C) 2017 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.
|
|
-->
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/start_rotation_dialog_subhead"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="@dimen/start_rotation_dialog_subhead_margin_bottom"
|
|
android:layout_marginEnd="@dimen/abc_dialog_padding_material"
|
|
android:layout_marginLeft="@dimen/abc_dialog_padding_material"
|
|
android:layout_marginRight="@dimen/abc_dialog_padding_material"
|
|
android:layout_marginStart="@dimen/abc_dialog_padding_material"
|
|
android:layout_marginTop="@dimen/start_rotation_dialog_subhead_margin_top"
|
|
android:textSize="@dimen/abc_text_size_subhead_material" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="@dimen/start_rotation_dialog_checkbox_area_margin_bottom"
|
|
android:layout_marginEnd="@dimen/abc_dialog_padding_material"
|
|
android:layout_marginLeft="@dimen/start_rotation_dialog_checkbox_area_margin_left"
|
|
android:layout_marginRight="@dimen/abc_dialog_padding_material"
|
|
android:layout_marginStart="@dimen/start_rotation_dialog_checkbox_area_margin_left"
|
|
android:orientation="horizontal">
|
|
|
|
<CheckBox
|
|
android:id="@+id/start_rotation_wifi_only_checkbox"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="start|center_vertical"
|
|
android:layout_marginEnd="@dimen/start_rotation_dialog_checkbox_margin_right"
|
|
android:layout_marginRight="@dimen/start_rotation_dialog_checkbox_margin_right"
|
|
android:minHeight="@dimen/start_rotation_dialog_checkbox_min_height"
|
|
android:buttonTint="?android:attr/colorAccent"
|
|
android:text="@string/start_rotation_dialog_wifi_only_option_message"
|
|
android:textSize="@dimen/abc_text_size_body_1_material"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|