可扩展列表视图布局方向不适用于平板电脑

时间:2017-12-19 06:19:11

标签: android android-layout layout expandablelistview tablet

我在三星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>

这是错误对齐的图像。文字应位于抽屉的左侧:

Image

2 个答案:

答案 0 :(得分:0)

删除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"

            />

答案 1 :(得分:0)

遇到这个问题的任何人,问题出在设备上。由于它的分辨率,它被倒置了。我在另一台具有类似模型的设备上运行它,它按预期工作。