diff options
author | lado <herrlado@gmail.com> | 2012-01-22 23:08:55 +0100 |
---|---|---|
committer | lado <herrlado@gmail.com> | 2012-01-22 23:08:55 +0100 |
commit | 2490d008294b7061b4c2f44071b3376739897104 (patch) | |
tree | d069310fe452021592740a07bd95098e262bf718 | |
parent | 84d9f447053cf7420e945033f42d8964b2cb685e (diff) | |
download | vdr-manager-2490d008294b7061b4c2f44071b3376739897104.tar.gz vdr-manager-2490d008294b7061b4c2f44071b3376739897104.tar.bz2 |
scrollable
-rw-r--r-- | vdrmanager/res/layout-land/vdrmanager.xml | 10 | ||||
-rw-r--r-- | vdrmanager/res/layout/vdrmanager.xml | 12 |
2 files changed, 18 insertions, 4 deletions
diff --git a/vdrmanager/res/layout-land/vdrmanager.xml b/vdrmanager/res/layout-land/vdrmanager.xml index 78b6f61..817eb4d 100644 --- a/vdrmanager/res/layout-land/vdrmanager.xml +++ b/vdrmanager/res/layout-land/vdrmanager.xml @@ -1,10 +1,12 @@ <?xml version="1.0" encoding="utf-8"?> -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="fill_parent"> +<LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:padding="10dip"> - <ImageView android:id="@+id/main_logo" android:layout_width="fill_parent" - android:layout_height="90dip" android:src="@drawable/vdr_logo" android:paddingBottom="5dip" /> + android:layout_height="80dip" android:src="@drawable/vdr_logo" android:paddingBottom="5dip" /> <!-- <ListView android:id="@+id/vdrmanager_menu" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_below="@id/main_logo"/> --> @@ -70,4 +72,6 @@ android:background="@android:drawable/list_selector_background" android:textColor="#FFF" /> </LinearLayout> + </LinearLayout> + </ScrollView>
\ No newline at end of file diff --git a/vdrmanager/res/layout/vdrmanager.xml b/vdrmanager/res/layout/vdrmanager.xml index 2d541bd..d963d70 100644 --- a/vdrmanager/res/layout/vdrmanager.xml +++ b/vdrmanager/res/layout/vdrmanager.xml @@ -1,5 +1,13 @@ <?xml version="1.0" encoding="utf-8"?> -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + + <ScrollView + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + + > + +<LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:padding="10dip"> @@ -78,4 +86,6 @@ android:background="@android:drawable/list_selector_background" android:textColor="#FFF" /> </LinearLayout> + </LinearLayout> +</ScrollView>
\ No newline at end of file |