mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-07 09:44:59 -05:00
45 lines
1.3 KiB
XML
45 lines
1.3 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<ListView
|
||
|
android:id="@+id/options"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="0dip"
|
||
|
android:layout_weight="1"
|
||
|
android:padding="5dip"/>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:orientation="horizontal"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
style="@android:style/ButtonBar">
|
||
|
|
||
|
<Button
|
||
|
android:text="dummy"
|
||
|
android:layout_width="0dip"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1"
|
||
|
android:visibility="invisible"/>
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/btn_cancel"
|
||
|
android:text="@android:string/cancel"
|
||
|
android:layout_width="0dip"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:layout_weight="2"/>
|
||
|
|
||
|
<Button
|
||
|
android:text="dummy"
|
||
|
android:layout_width="0dip"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1"
|
||
|
android:visibility="invisible"/>
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</LinearLayout>
|