我有PreferencesActivity
它,我需要它正确对齐,因为我想使用阿拉伯语,我尝试使用它android:layout_gravity="right"
,PreferenceScreen
但它没有用。
这是我的 XML:
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" android:layout_gravity="right">
<PreferenceCategory android:title="General Settings">
<CheckBoxPreference
android:title="Full Screen"
android:defaultValue="false"
android:summary="Always view as Full Screen"
android:key="fullScreenPref" />
<Preference
android:title="Report Bugs"
android:summary="Notify us for any Bugs or Errors"
android:key="bugs"/>
<Preference
android:title="About"
android:summary="Version 1.0.0"
android:key="about"/>
</PreferenceCategory>
</PreferenceScreen>
这就是我在里面使用 XML 的方式PreferencesActivity
:
addPreferencesFromResource(R.layout.preferences);