<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >
当我开始这个活动时,它的方向只是继承了当前的方向,没有做任何改变,我错过了什么吗?
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >
当我开始这个活动时,它的方向只是继承了当前的方向,没有做任何改变,我错过了什么吗?
它不起作用,因为默认情况下 LinearLayout 具有水平方向。
xml 中的方向是 LinearLayout 的方向。这意味着您放入线性布局的任何视图都将水平添加到彼此旁边。请参阅此处的文档:http: //developer.android.com/reference/android/widget/LinearLayout.html#attr_android :orientation
听起来您想修复屏幕方向 - 试试这个问题,例如:如何将布局方向固定为垂直?