要在Android中開啟SupportsRTL(Right-to-Left)功能,可以通過以下步驟:
<application
android:supportsRtl="true">
<resources>
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="android:layoutDirection">rtl</item>
</style>
</resources>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:layoutDirection="rtl"/>
通過以上步驟,就可以在Android應(yīng)用中開啟SupportsRTL功能,使應(yīng)用支持從右向左的布局方式。