如果屏幕太小,视图应滚动

时间:2014-02-07 16:03:52

标签: android layout view scroll

我有以下使用5英寸智能手机测试的视图。现在我用HTC Wildfire测试并遇到问题,我只看到前两个按钮,第三个非常小。 我想,如果按钮没有足够的空间显示,用户可以滚动查看完整按钮。我做错了什么?

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
 android:background="@drawable/bg_ohne"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".NachdemSpiel" >

<TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:textStyle="bold"
    android:text="Herzlichen Glückwunsch! Dein Highscore beträgt: " />

<TextView
    android:id="@+id/tvPunkteNach"
    android:textStyle="bold"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/textView2"
    android:layout_centerHorizontal="true"
    android:text="" />


    <Button
    android:id="@+id/nbtSenden"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/nbtNochmal"
    android:layout_below="@+id/tvPunkteNach"
    android:layout_marginTop="50dp"
    android:background="@drawable/highscoresenden" />


   <Button
    android:id="@+id/nbtNochmal"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/nbtHauptmenu"
    android:layout_below="@+id/nbtSenden"
    android:layout_marginTop="10dp"
    android:background="@drawable/nochmalspielen" />



<Button
    android:id="@+id/nbtHauptmenu"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/nbtNochmal"
    android:layout_marginTop="10dp"
    android:background="@drawable/hauptmenue" />




</RelativeLayout>

2 个答案:

答案 0 :(得分:3)

将您的布局包装在ScrollView中,如下所示:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg_ohne">

<RelativeLayout
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".NachdemSpiel" >

<TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:textStyle="bold"
    android:text="Herzlichen Glückwunsch! Dein Highscore beträgt: " />

<TextView
    android:id="@+id/tvPunkteNach"
    android:textStyle="bold"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/textView2"
    android:layout_centerHorizontal="true"
    android:text="" />


<Button
    android:id="@+id/nbtSenden"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/nbtNochmal"
    android:layout_below="@+id/tvPunkteNach"
    android:layout_marginTop="50dp"
    android:background="@drawable/highscoresenden" />


<Button
    android:id="@+id/nbtNochmal"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/nbtHauptmenu"
    android:layout_below="@+id/nbtSenden"
    android:layout_marginTop="10dp"
    android:background="@drawable/nochmalspielen" />

<Button
    android:id="@+id/nbtHauptmenu"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/nbtNochmal"
    android:layout_marginTop="10dp"
    android:background="@drawable/hauptmenue" />

</RelativeLayout>
</ScrollView>

答案 1 :(得分:2)

为此,您必须使用ScrollView。 ScrollView只能有一个孩子,所以你必须包装整个RelativeLayout