123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="@dimen/activity_horizontal_margin"
- tools:context=".MainActivity">
- <Button
- android:id="@+id/basicNoTitle"
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:text="@string/basic_notitle" />
- <Button
- android:id="@+id/basic"
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:text="@string/basic"
- android:layout_marginTop="@dimen/sample_button_spacing" />
- <Button
- android:id="@+id/basicLongContent"
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:text="@string/basic_longContent"
- android:layout_marginTop="@dimen/sample_button_spacing" />
- <Button
- android:id="@+id/basicIcon"
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:text="@string/basic_icon"
- android:layout_marginTop="@dimen/sample_button_spacing" />
- <Button
- android:id="@+id/stacked"
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:text="@string/stacked"
- android:layout_marginTop="@dimen/sample_button_spacing" />
- <Button
- android:id="@+id/neutral"
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:text="@string/neutral"
- android:layout_marginTop="@dimen/sample_button_spacing" />
- <Button
- android:id="@+id/callbacks"
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:text="@string/callbacks"
- android:layout_marginTop="@dimen/sample_button_spacing" />
- <Button
- android:id="@+id/list"
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:text="@string/list"
- android:layout_marginTop="@dimen/sample_button_spacing" />
- <Button
- android:id="@+id/longList"
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:text="@string/basic_list_long"
- android:layout_marginTop="@dimen/sample_button_spacing" />
- <Button
- android:id="@+id/listNoTitle"
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:text="@string/basic_list_notitle"
- android:layout_marginTop="@dimen/sample_button_spacing" />
- <Button
- android:id="@+id/singleChoice"
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:text="@string/singleChoice"
- android:layout_marginTop="@dimen/sample_button_spacing" />
- <Button
- android:id="@+id/multiChoice"
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:text="@string/multiChoice"
- android:layout_marginTop="@dimen/sample_button_spacing" />
- <Button
- android:id="@+id/multiChoiceLimited"
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:text="@string/multiChoiceLimited"
- android:layout_marginTop="@dimen/sample_button_spacing" />
- <Button
- android:id="@+id/customListItems"
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:text="@string/custom_adapter"
- android:layout_marginTop="@dimen/sample_button_spacing" />
- <Button
- android:id="@+id/customView"
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:text="@string/customView"
- android:layout_marginTop="@dimen/sample_button_spacing" />
- <Button
- android:id="@+id/customView_webView"
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:text="@string/customView_webView"
- android:layout_marginTop="@dimen/sample_button_spacing" />
- <Button
- android:id="@+id/customView_colorChooser"
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:text="@string/customView_colorChooser"
- android:layout_marginTop="@dimen/sample_button_spacing" />
- <Button
- android:id="@+id/themed"
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:text="@string/themed"
- android:layout_marginTop="@dimen/sample_button_spacing" />
- <Button
- android:id="@+id/showCancelDismiss"
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:text="@string/showCancelDismissCallbacks"
- android:layout_marginTop="@dimen/sample_button_spacing" />
- <Button
- android:id="@+id/folder_chooser"
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:text="@string/folder_chooser"
- android:layout_marginTop="@dimen/sample_button_spacing" />
- <Button
- android:id="@+id/input"
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:text="@string/input"
- android:layout_marginTop="@dimen/sample_button_spacing" />
- <Button
- android:id="@+id/progress1"
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:text="@string/progress_dialog"
- android:layout_marginTop="@dimen/sample_button_spacing" />
- <Button
- android:id="@+id/progress2"
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:text="@string/progress_dialog_indeterminate"
- android:layout_marginTop="@dimen/sample_button_spacing" />
- <Button
- android:id="@+id/preference_dialogs"
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:text="@string/preference_dialogs"
- android:layout_marginTop="@dimen/sample_button_spacing" />
- </LinearLayout>
- </ScrollView>
|