滚动视图不滚动android

时间:2013-11-29 18:36:39

标签: java android

如果玩家选择角色的第一个布局,我尝试创建一个小型游戏卡游戏 但屏幕不够大,不适合所有字符“3”我试图水平设置scrollview,以填充父母然后具体数量,然后包装内容,但我累了

    <ScrollView
    android:layout_marginTop="35dp"
    android:layout_width="650dp" 
    android:layout_height="wrap_content"
    >

    <LinearLayout 
        android:layout_marginTop="40dp"
        android:layout_width="650dp"
        android:layout_height="350dp"
        >


            <RadioGroup

                 android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:orientation="horizontal" >
            <RadioButton 
                android:id="@+id/RBarthu_mage"
                android:button="@drawable/user_arthu"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                />

            <RadioButton 
                android:id="@+id/RBDwemer_fighter"
                android:button="@drawable/xuser_dwemer"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="50dp"
                />
                            <RadioButton 
                android:id="@+id/RBZombie"
                android:button="@drawable/xuser_zombie"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="50dp"
                />

        </RadioGroup>
    </LinearLayout>


</ScrollView>

1 个答案:

答案 0 :(得分:1)

<LinearLayout更改行

...layout_height="350dp" 

...layout_height="wrap_content"

注意:只是为了做好,请将<LinearLayout的宽度更改为match_parent