diff options
author | lado <herrlado@gmail.com> | 2013-07-24 11:47:02 +0200 |
---|---|---|
committer | lado <herrlado@gmail.com> | 2013-07-24 11:47:02 +0200 |
commit | c4ba2bc1e9e9e074d741915018eb8dac06d92822 (patch) | |
tree | 3c559395c337c24cf0e3d5ce659baa0c93caf4d1 /vdrmanager/res | |
parent | a307c2c08043b5e2d0c7ae54b566794afbbefa4b (diff) | |
download | vdr-manager-c4ba2bc1e9e9e074d741915018eb8dac06d92822.tar.gz vdr-manager-c4ba2bc1e9e9e074d741915018eb8dac06d92822.tar.bz2 |
add over menu
Diffstat (limited to 'vdrmanager/res')
-rw-r--r-- | vdrmanager/res/layout/vdr_list_add_delete.xml | 52 |
1 files changed, 21 insertions, 31 deletions
diff --git a/vdrmanager/res/layout/vdr_list_add_delete.xml b/vdrmanager/res/layout/vdr_list_add_delete.xml index 7fcc2be..054b4d5 100644 --- a/vdrmanager/res/layout/vdr_list_add_delete.xml +++ b/vdrmanager/res/layout/vdr_list_add_delete.xml @@ -1,34 +1,24 @@ <?xml version="1.0" encoding="utf-8"?> -<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:app="http://schemas.android.com/apk/res/de.ub0r.android.callmeter" - android:layout_height="fill_parent" android:layout_width="fill_parent"> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" android:orientation="vertical" + android:layout_height="fill_parent" > - <LinearLayout android:id="@+id/item_add" android:padding="4dip" - android:layout_alignParentBottom="true" android:layout_width="fill_parent" - android:layout_height="wrap_content" android:orientation="horizontal" - android:gravity="right|center_vertical" - style="@android:style/ButtonBar" - > - <TextView android:layout_width="wrap_content" android:text="@string/new_vdr" - android:layout_height="wrap_content" - android:layout_marginRight="4dip" - android:textAppearance="?android:textAppearanceMedium" - /> - <ImageButton android:id="@+id/add_item" android:layout_width="wrap_content" - android:layout_height="wrap_content" style="@style/PlusButton" /> - </LinearLayout> - <RelativeLayout android:layout_width="fill_parent" - android:layout_height="fill_parent" android:layout_above="@id/item_add"> - <ListView android:id="@id/android:list" android:layout_width="fill_parent" - android:layout_height="fill_parent" android:drawSelectorOnTop="false" - android:scrollingCache="true" android:fastScrollEnabled="true" - android:choiceMode="singleChoice" /> - - <TextView android:id="@android:id/empty" android:layout_width="fill_parent" - android:gravity="center" - android:padding="20dip" - android:textAppearance="?android:textAppearanceMedium" - android:layout_height="wrap_content" android:text="@string/no_vdr" /> - </RelativeLayout> + <ListView + android:id="@id/android:list" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:choiceMode="singleChoice" + android:drawSelectorOnTop="false" + android:fastScrollEnabled="true" + android:scrollingCache="true" /> -</RelativeLayout>
\ No newline at end of file + <TextView + android:id="@android:id/empty" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:gravity="center" + android:padding="20dip" + android:text="@string/no_vdr" + android:textAppearance="?android:textAppearanceMedium" /> + +</LinearLayout>
\ No newline at end of file |