diff options
Diffstat (limited to 'vdrmanager/app/src/main/res/layout/child_layout.xml')
-rw-r--r-- | vdrmanager/app/src/main/res/layout/child_layout.xml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/vdrmanager/app/src/main/res/layout/child_layout.xml b/vdrmanager/app/src/main/res/layout/child_layout.xml new file mode 100644 index 0000000..69340a6 --- /dev/null +++ b/vdrmanager/app/src/main/res/layout/child_layout.xml @@ -0,0 +1,25 @@ +<LinearLayout android:id="@+id/LinearLayout01" + android:layout_width="fill_parent" android:layout_height="40dip" + xmlns:android="http://schemas.android.com/apk/res/android" + > + <LinearLayout android:layout_width="fill_parent" + android:background="@android:drawable/list_selector_background" + android:layout_height="wrap_content"> + <TextView android:id="@+id/channel_name" + android:layout_width="wrap_content" android:layout_height="wrap_content" + android:text="Channel" android:gravity="center_vertical|left" + android:paddingLeft="15dip" android:paddingRight="5dip" + android:textColor="#ffffffff" + android:textStyle="bold" android:maxLines="2" + android:textAppearance="?android:textAppearanceMedium" + android:layout_weight="2" /> + + <TextView android:id="@+id/channel_aux" android:layout_width="40dip" + android:layout_height="40dip" android:layout_weight="1" android:text="23" + android:gravity="center_vertical|right" android:ellipsize="end" + android:layout_marginRight="5dip" android:textColor="#BDBDBD" + android:textSize="11sp" + android:textAppearance="?android:textAppearanceSmall" /> + </LinearLayout> + +</LinearLayout> |