可扩展列表视图布局方向在平板电脑中不起作用
Expandable list view layout direction not working in tablet
我是运行 Samsung Galaxy Tab 3.7 英寸屏幕尺寸的应用程序。我为不同的屏幕尺寸制作了不同的布局。问题是可扩展列表视图的方向是从右到左,应该是从左到右。它适用于其他设备,但不适用于此设备。
这是可扩展列表视图的代码:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<include
layout="@layout/app_bar_welcome"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@color/dark_grey"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_welcome"
>
<ExpandableListView
android:id="@+id/navigationmenu"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="160dp"
android:background="@color/dark_grey"
android:theme="@style/MenuItems"
android:textSize="2dp"
android:groupIndicator="@android:color/transparent"
android:layoutDirection="rtl"/>
</android.support.design.widget.NavigationView>
</android.support.v4.widget.DrawerLayout>
这是对齐错误的图像。文本应位于抽屉的左侧:
删除 layoutDirection
并添加 alignParentLeft = true
。
<ExpandableListView
android:id="@+id/navigationmenu"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="160dp"
android:background="@color/dark_grey"
android:theme="@style/MenuItems"
android:layout_alignParentLeft="true"
android:groupIndicator="@android:color/transparent"
/>
任何遇到这个问题的人,问题出在设备上。由于它的分辨率,它被倒置了。我 运行 它在另一台具有类似型号的设备上运行,并且按预期工作。
我是运行 Samsung Galaxy Tab 3.7 英寸屏幕尺寸的应用程序。我为不同的屏幕尺寸制作了不同的布局。问题是可扩展列表视图的方向是从右到左,应该是从左到右。它适用于其他设备,但不适用于此设备。
这是可扩展列表视图的代码:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<include
layout="@layout/app_bar_welcome"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@color/dark_grey"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_welcome"
>
<ExpandableListView
android:id="@+id/navigationmenu"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="160dp"
android:background="@color/dark_grey"
android:theme="@style/MenuItems"
android:textSize="2dp"
android:groupIndicator="@android:color/transparent"
android:layoutDirection="rtl"/>
</android.support.design.widget.NavigationView>
</android.support.v4.widget.DrawerLayout>
这是对齐错误的图像。文本应位于抽屉的左侧:
删除 layoutDirection
并添加 alignParentLeft = true
。
<ExpandableListView
android:id="@+id/navigationmenu"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="160dp"
android:background="@color/dark_grey"
android:theme="@style/MenuItems"
android:layout_alignParentLeft="true"
android:groupIndicator="@android:color/transparent"
/>
任何遇到这个问题的人,问题出在设备上。由于它的分辨率,它被倒置了。我 运行 它在另一台具有类似型号的设备上运行,并且按预期工作。