我的程序要求垂直对齐。在所有其他模拟器上,这是有效的,但对于平板电脑中的#5560 10,它总是水平运行。还有什么我应该做的让它在平板电脑上垂直运行吗?这是我在main_activity.xml中使用的代码:app:orientation="vertical"
对于那些怀疑我使用app的人:namespace:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/medium_grey"
android:fitsSystemWindows="true"
app:columnOrderPreserved="true"
app:alignmentMode="alignMargins"
android:tag="normal"
app:orientation="vertical">
<EditText
android:id="@+id/total"
app:layout_column="0"
app:layout_columnSpan="6"
app:layout_gravity="left"
app:layout_row="0"
android:clickable="false"
android:ems="10"
android:inputType="none|number"
android:textAlignment="textEnd"
android:width="500dp" >
</EditText>
然后尝试将其更改回android:orientation="vertical"
只是为了查看它是否有效。还是一样的。所有其他avd都以垂直模式运行,平板电脑水平运行。