20 lines
703 B
XML
Executable File
20 lines
703 B
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/listPreferredItemHeightSmall"
|
|
android:paddingLeft="?attr/listPreferredItemPaddingLeft"
|
|
android:paddingRight="?attr/listPreferredItemPaddingRight"
|
|
android:background="?attr/selectableItemBackground"
|
|
android:focusable="true">
|
|
|
|
|
|
<Button
|
|
android:id="@+id/dialog_open_button"
|
|
style="@style/Theme.Widget.Button"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:text="Button" />
|
|
</LinearLayout>
|