本文介绍了android:supportsRtl ="true"的用途是什么?在AndroidManifest xml文件中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
每当我在android studio中创建新项目时,我的应用程序AndroidManifest File中就会出现android:supportsRtl="true"
.
Whenever I created new project in android studio, I got android:supportsRtl="true"
in my app AndroidManifest File.
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
...
</application>
应用程序中有什么用途,或优势是什么?在我的应用程序AndroidManifest中添加或不添加时的缺点.
What is use in app, or what is advantages & disadvantage when I add or not add in my app AndroidManifest .
推荐答案
此属性的默认值为false.
The default value of this attribute is false.
此属性是在API级别17中添加的.
This attribute was added in API level 17.
(来源: http://developer.android.com/guide/topics/manifest/application-element.html )
这篇关于android:supportsRtl ="true"的用途是什么?在AndroidManifest xml文件中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!