在Android Studio中,我尝试为我的按钮制作垂直滚动,当我运行代码时,它会自动替换android:orientation =" vertical"到android:orientation =" verticle"并给出了错误"错误:(32,38)不允许字符串类型(在'方向'有值' verticle')。" 我不知道该怎么做,因为它在我运行代码时会自动替换它。
<ScrollView
android:layout_width="fill_parent"
android:layout_height="200dp" >
<LinearLayout
android:layout_width="fill_parent
android:layout_height="wrap_content"
android:orientation="verticle" >
Buttons.etc
</LinearLayout>
</ScrollView>
答案 0 :(得分:1)
您似乎在fill_parent
之后错过了引用。
不推荐使用fill_parent
,您应该使用match_parent
。