如何右对齐首选项 Android 中的活动?
我有我需要它正确对齐,因为我想使用阿拉伯语,我试图使用它,但它不起作用。PreferencesActivityandroid: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);