diff options
Diffstat (limited to 'vdrmanager/de.bjusystems.vdrmanager/src/main/res/layout')
4 files changed, 42 insertions, 0 deletions
diff --git a/vdrmanager/de.bjusystems.vdrmanager/src/main/res/layout/dialog_dropdown.xml b/vdrmanager/de.bjusystems.vdrmanager/src/main/res/layout/dialog_dropdown.xml new file mode 100644 index 0000000..4f90097 --- /dev/null +++ b/vdrmanager/de.bjusystems.vdrmanager/src/main/res/layout/dialog_dropdown.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<LinearLayout + xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/layout" + android:orientation="vertical" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center" + > + + <EditText + android:id="@+id/filter" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:maxLines="1" + android:lines="1" + android:singleLine="true" + /> + + <com.rajasharan.widget.RecyclerDropdown + android:id="@+id/list" + android:layout_width="match_parent" + android:layout_height="@dimen/recycler_height" + /> + +</LinearLayout> diff --git a/vdrmanager/de.bjusystems.vdrmanager/src/main/res/layout/recycler_buffer_item.xml b/vdrmanager/de.bjusystems.vdrmanager/src/main/res/layout/recycler_buffer_item.xml new file mode 100644 index 0000000..25ce8b8 --- /dev/null +++ b/vdrmanager/de.bjusystems.vdrmanager/src/main/res/layout/recycler_buffer_item.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> + +<View + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="@dimen/item_height" + /> diff --git a/vdrmanager/de.bjusystems.vdrmanager/src/main/res/layout/recycler_itemviews.xml b/vdrmanager/de.bjusystems.vdrmanager/src/main/res/layout/recycler_itemviews.xml new file mode 100644 index 0000000..6aeb1b0 --- /dev/null +++ b/vdrmanager/de.bjusystems.vdrmanager/src/main/res/layout/recycler_itemviews.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> + +<TextView xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/text" + android:layout_width="match_parent" + android:layout_height="@dimen/item_height" + /> diff --git a/vdrmanager/de.bjusystems.vdrmanager/src/main/res/layout/remote.xml b/vdrmanager/de.bjusystems.vdrmanager/src/main/res/layout/remote.xml index b251ca1..c75d83e 100644 --- a/vdrmanager/de.bjusystems.vdrmanager/src/main/res/layout/remote.xml +++ b/vdrmanager/de.bjusystems.vdrmanager/src/main/res/layout/remote.xml @@ -7,6 +7,8 @@ android:orientation="vertical" android:padding="5dp"> + + <LinearLayout android:id="@+id/resultwrapper" android:layout_width="fill_parent" |