diff options
author | lado <herrlado@gmail.com> | 2013-04-04 03:02:07 +0200 |
---|---|---|
committer | lado <herrlado@gmail.com> | 2013-04-04 03:02:07 +0200 |
commit | 5e8c603ad3b02ed54bc96106fc0aa382d022f8ee (patch) | |
tree | 925a2ad363f86e36219aecdd52b4f79572cc0ef6 /vdrmanager/res | |
parent | c5470a329c2f04ce48058de460fdb79deb91b8cf (diff) | |
download | vdr-manager-5e8c603ad3b02ed54bc96106fc0aa382d022f8ee.tar.gz vdr-manager-5e8c603ad3b02ed54bc96106fc0aa382d022f8ee.tar.bz2 |
haveing recording infos
Diffstat (limited to 'vdrmanager/res')
-rw-r--r-- | vdrmanager/res/layout/recording_list.xml | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/vdrmanager/res/layout/recording_list.xml b/vdrmanager/res/layout/recording_list.xml index 66eb5de..c7e81b4 100644 --- a/vdrmanager/res/layout/recording_list.xml +++ b/vdrmanager/res/layout/recording_list.xml @@ -4,16 +4,33 @@ android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > - <LinearLayout android:layout_height="fill_parent" + <LinearLayout android:layout_height="fill_parent" android:orientation="vertical" android:layout_width="fill_parent" android:id="@+id/main_content"> - <ListView xmlns:android="http://schemas.android.com/apk/res/android" + <LinearLayout + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:layout_alignParentBottom="true" + android:orientation="horizontal" + android:padding="2dp" android:paddingLeft="5dp" android:paddingRight="5dp" > + <TextView + android:id="@+id/folder_info" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_weight="1" + /> + <TextView android:id="@+id/current_count" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + /> + </LinearLayout> + <ListView android:id="@+id/recording_list" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_alignWithParentIfMissing="true" android:layout_alignParentTop="true" android:layout_centerHorizontal="true" android:cacheColorHint="?android:attr/colorBackground" /> </LinearLayout> - + <LinearLayout android:orientation="vertical" android:id="@+id/no_connection_layout" android:layout_width="fill_parent" android:layout_height="fill_parent"> |