<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >
当我开始这项活动时,它的方向只是继承了当前的方向,没有做出任何改变,我是否遗漏了任何东西?
答案 0 :(得分:0)
它不起作用,因为默认情况下LinearLayout具有水平方向。
答案 1 :(得分:0)
xml中的方向是LinearLayout的方向。这意味着您放入线性布局的任何视图都将水平添加在彼此旁边。请参阅此处的文档:http://developer.android.com/reference/android/widget/LinearLayout.html#attr_android:orientation
听起来您想要修复屏幕方向 - 请尝试此问题,例如:How to fix layout orientation to vertical?