Android Studio XML 上的 RTL 预览

RTL Preview on Android Studio XML

Is it possible to preview the RTL view for layouts in XML Preview on Android Studio?

对于预览,您可以使用 android:layoutDirection="rtl"

设置 xml 父视图

例如,

item.xml

<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/card_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="2dp"
card_view:cardCornerRadius="2dp"
card_view:cardElevation="2dp"
card_view:cardUseCompatPadding="true"
android:layoutDirection="rtl"
>
//design
</android.support.v7.widget.CardView>

android:layoutDirection="rtl"

输出:

更简单的预览 RTL 的解决方案是从开发人员选项中强制使用 RTL。