How to right align PreferencesActivity in android?

前端 未结 14 2127
一向
一向 2020-12-31 07:07

I have PreferencesActivity which I need it to be right aligned because I want to use Arabic language, I tried to use android:layout_gravity=\"right\"

14条回答
  •  礼貌的吻别
    2020-12-31 07:46

    In my point of view this can be the solution: Set each view's LayoutDirection to rtl;

    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    View view = super.onCreateView(inflater, container, savedInstanceState);
    
    view.setLayoutDirection(View.LAYOUT_DIRECTION_RTL);
    
    return view;}
    

提交回复
热议问题