在我的项目中,我必须为和语言创建layout-ldltr
和layout-ldrtl
布局。Right-To-Left
Left-To-Right
我启动了从右到左语言的应用程序,一切都很好。但是当方向改变时,android 加载layout-ldltr
布局反对layout-ldrtl
,虽然当前Locale
设置为 RTL 语言!!!
如何解决这个问题?
在AndroidManifest.xml
<application
android:name=".QuranApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
在layout-ldrtl\activity_main.xml
:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layoutDirection="rtl">
<include layout="@layout/toolbar" />
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:layoutDirection="rtl">
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layoutDirection="rtl"/>
<include
layout="@layout/list_view"
android:layout_width="@dimen/drawer_width"
android:layout_height="match_parent"
android:layout_gravity="start" />
</android.support.v4.widget.DrawerLayout>
更新
在@JohanShogun 发表评论后,我更改android:layoutDirection="rtl"
为android:layoutDirection="locale"
大多数项目并解决了问题。
在第一张照片中,所有元素都显示得非常好:
在横向模式下,在标头项目中的StickyListHeader 列表视图中,它贴在屏幕顶部,Android 从ltr布局使用!: