diff options
author | lado <herrlado@gmail.com> | 2013-04-03 01:43:21 +0200 |
---|---|---|
committer | lado <herrlado@gmail.com> | 2013-04-03 01:43:21 +0200 |
commit | 177cd393801b95ab8febac53d600d19674f50015 (patch) | |
tree | 06c838e305d7a0203bedcd1db43f84ec8b0a5ffd /vdrmanager/res/layout/folder_item.xml | |
parent | 444aeee7d7c6f95ed6359f39d21e7001d4a8a944 (diff) | |
download | vdr-manager-177cd393801b95ab8febac53d600d19674f50015.tar.gz vdr-manager-177cd393801b95ab8febac53d600d19674f50015.tar.bz2 |
Feature #1321
Diffstat (limited to 'vdrmanager/res/layout/folder_item.xml')
-rw-r--r-- | vdrmanager/res/layout/folder_item.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/vdrmanager/res/layout/folder_item.xml b/vdrmanager/res/layout/folder_item.xml new file mode 100644 index 0000000..fa2f8ab --- /dev/null +++ b/vdrmanager/res/layout/folder_item.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:orientation="horizontal" + android:padding="5dip" + android:layout_height="wrap_content" > + + <ImageView + android:layout_width="24dp" + android:layout_height="24dp" + android:src="@drawable/folder" /> + + <TextView + android:id="@+id/header_item" + android:textAppearance="?android:textAppearanceMedium" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:paddingLeft="5dip" + android:layout_gravity="center_vertical" + android:text="House of Cards" /> + +</LinearLayout>
\ No newline at end of file |