diff options
author | Dominik <dominik@dominikschuermann.de> | 2012-04-11 19:29:27 +0200 |
---|---|---|
committer | Dominik <dominik@dominikschuermann.de> | 2012-06-13 19:28:21 +0300 |
commit | 2f58c3d86b29c9539d5a0d20b160ac175bb00381 (patch) | |
tree | eaad5880bbd0cb1156b197cb19596a0e60c2f868 /org_apg/res/layout | |
parent | e092016518f8ab7413095ffed140a732c7f751a6 (diff) | |
download | open-keychain-2f58c3d86b29c9539d5a0d20b160ac175bb00381.tar.gz open-keychain-2f58c3d86b29c9539d5a0d20b160ac175bb00381.tar.bz2 open-keychain-2f58c3d86b29c9539d5a0d20b160ac175bb00381.zip |
integration lib and demo
Diffstat (limited to 'org_apg/res/layout')
-rw-r--r-- | org_apg/res/layout/select_public_key.xml | 42 |
1 files changed, 11 insertions, 31 deletions
diff --git a/org_apg/res/layout/select_public_key.xml b/org_apg/res/layout/select_public_key.xml index 9ce35a7a8..4fcd375cc 100644 --- a/org_apg/res/layout/select_public_key.xml +++ b/org_apg/res/layout/select_public_key.xml @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2010 Thialfihar <thi@thialfihar.org> +<!-- + Copyright (C) 2010 Thialfihar <thi@thialfihar.org> Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -14,42 +15,21 @@ limitations under the License. --> -<LinearLayout - xmlns:android="http://schemas.android.com/apk/res/android" - android:orientation="vertical" +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" - android:fillViewport="true"> + android:fillViewport="true" + android:orientation="vertical" > - <include android:id="@+id/layout_filter" layout="@layout/filter_info"/> + <include + android:id="@+id/layout_filter" + layout="@layout/filter_info" /> <ListView android:id="@+id/list" - android:choiceMode="multipleChoice" android:layout_width="fill_parent" android:layout_height="0dip" - android:layout_weight="1"/> + android:layout_weight="1" + android:choiceMode="multipleChoice" /> - <LinearLayout - android:orientation="horizontal" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - style="@android:style/ButtonBar"> - - <Button - android:text="@android:string/ok" - android:id="@+id/btn_ok" - android:layout_width="0dip" - android:layout_height="wrap_content" - android:layout_weight="1"/> - - <Button - android:text="@android:string/cancel" - android:id="@+id/btn_cancel" - android:layout_width="0dip" - android:layout_height="wrap_content" - android:layout_weight="1"/> - - </LinearLayout> - -</LinearLayout> +</LinearLayout>
\ No newline at end of file |