如果玩家选择角色的第一个布局,我尝试创建一个小型游戏卡游戏 但屏幕不够大,不适合所有字符“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>
答案 0 :(得分:1)
在<LinearLayout
更改行
...layout_height="350dp"
到
...layout_height="wrap_content"
注意:只是为了做好,请将<LinearLayout
的宽度更改为match_parent
。