首页 > 解决方案 > Android 从右到左语言支持

问题描述

我正在开发一个应用程序,并且不想支持 RTL 。这是我的问题:如何在不让整个应用程序支持 RTL 的情况下让我的偏好屏幕支持 RTL?

谢谢您的回答。

标签: android

解决方案


如果您的 minSdkVersion 是 Android 4.2(API 级别 17),您可以使用:`

android:layoutDirection="rtl"

https://developer.android.com/reference/android/util/LayoutDirection

否则:

ViewCompat.setLayoutDirection(findViewById(R.id.view), ViewCompat.LAYOUT_DIRECTION_RTL);

推荐阅读