最佳答案
每当我在 android 工作室创建新项目时,我都会在我的应用程序 AndroidManifest File 中获得 android:supportsRtl="true"
。
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
...
</application>
什么是在应用程序中使用,或什么是优势和劣势,当我添加或不添加到我的应用程序 AndroidManifest。