72 lines
4.1 KiB
XML
72 lines
4.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2007 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.
|
|
-->
|
|
|
|
<!-- Demonstrates different uses of the android.app.AlertDialog.
|
|
See corresponding Java code com.example.android.apis.app.AlertDialogSamples.java. -->
|
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/screen"
|
|
android:layout_width="match_parent" android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:importantForAutofill="noExcludeDescendants"
|
|
>
|
|
<LinearLayout
|
|
android:layout_width="match_parent" android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
<Button android:id="@+id/two_buttons"
|
|
android:layout_width="match_parent" android:layout_height="wrap_content"
|
|
android:text="@string/alert_dialog_two_buttons"/>
|
|
<Button android:id="@+id/two_buttons2"
|
|
android:layout_width="match_parent" android:layout_height="wrap_content"
|
|
android:text="@string/alert_dialog_two_buttons2"/>
|
|
<Button android:id="@+id/two_buttons2ultra"
|
|
android:layout_width="match_parent" android:layout_height="wrap_content"
|
|
android:text="@string/alert_dialog_two_buttons2ultra"/>
|
|
<Button android:id="@+id/select_button"
|
|
android:layout_width="match_parent" android:layout_height="wrap_content"
|
|
android:text="@string/alert_dialog_select_button"/>
|
|
<Button android:id="@+id/progress_button"
|
|
android:layout_width="match_parent" android:layout_height="wrap_content"
|
|
android:text="@string/alert_dialog_progress_button"/>
|
|
<Button android:id="@+id/progress_spinner_button"
|
|
android:layout_width="match_parent" android:layout_height="wrap_content"
|
|
android:text="@string/alert_dialog_progress_spinner_button"/>
|
|
<Button android:id="@+id/radio_button"
|
|
android:layout_width="match_parent" android:layout_height="wrap_content"
|
|
android:text="@string/alert_dialog_single_choice"/>
|
|
<Button android:id="@+id/checkbox_button"
|
|
android:layout_width="match_parent" android:layout_height="wrap_content"
|
|
android:text="@string/alert_dialog_multi_choice"/>
|
|
<Button android:id="@+id/checkbox_button2"
|
|
android:layout_width="match_parent" android:layout_height="wrap_content"
|
|
android:text="@string/alert_dialog_multi_choice_cursor"/>
|
|
<Button android:id="@+id/text_entry_button"
|
|
android:layout_width="match_parent" android:layout_height="wrap_content"
|
|
android:text="@string/alert_dialog_text_entry"/>
|
|
<Button android:id="@+id/two_buttons_old_school"
|
|
android:layout_width="match_parent" android:layout_height="wrap_content"
|
|
android:text="@string/alert_dialog_two_buttons_old_school"/>
|
|
<Button android:id="@+id/two_buttons_holo_light"
|
|
android:layout_width="match_parent" android:layout_height="wrap_content"
|
|
android:text="@string/alert_dialog_two_buttons_holo_light"/>
|
|
<Button android:id="@+id/two_buttons_default_light"
|
|
android:layout_width="match_parent" android:layout_height="wrap_content"
|
|
android:text="@string/alert_dialog_two_buttons_default_light"/>
|
|
<Button android:id="@+id/two_buttons_default_dark"
|
|
android:layout_width="match_parent" android:layout_height="wrap_content"
|
|
android:text="@string/alert_dialog_two_buttons_default_dark"/>
|
|
</LinearLayout>
|
|
</ScrollView>
|