2017-01-30 33 views
0

属性android:supportsRtl = "true"とは何ですか?AndroidManifestのandroid:supportsRtl属性とは何ですか

これは私のAndroidManifest

<application 
     android:allowBackup="true" 
     android:icon="@mipmap/ic_launcher" 
     android:label="@string/app_name" 
     android:supportsRtl="true" 
     android:theme="@style/AppTheme"> 
     <activity android:name=".MainActivity"> 
      <intent-filter> 
       <action android:name="android.intent.action.MAIN" /> 

       <category android:name="android.intent.category.LAUNCHER" /> 
      </intent-filter> 
     </activity> 
    </application> 

任意のアイデアですか?

+3

https://developer.android.com/guide/topics/manifest/application-element.html#supportsrtl – CommonsWare

答えて

3

それはあなたのアプリケーションにその機能を与えるためにあなたが手順に従ってください

などアラビア語、ペルシャ語として、あなたのデバイスは、右から左に現地語の向きを持っているため、ミラー効果を意味RTLのサポートを提供します以下のリンク。

https://android-developers.googleblog.com/2013/03/native-rtl-support-in-android-42.html

+0

[OK]を、どうもありがとうございました – tangalor

関連する問題