Have you decided this?
There are two possible workarounds: extend each of the settings and add:
@TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1) @Override protected View onCreateView(final ViewGroup paramViewGroup) { final View view=super.onCreateView(paramViewGroup); if(VERSION.SDK_INT>=VERSION_CODES.JELLY_BEAN_MR1) view.setLayoutDirection(View.LAYOUT_DIRECTION_LOCALE); return view; }
another operation:
if(VERSION.SDK_INT>=VERSION_CODES.JELLY_BEAN_MR1) getListView().setLayoutDirection(View.LAYOUT_DIRECTION_LOCALE);
However, for both workarounds, I cannot find how to handle the displayed dialogs by clicking on some settings.
source share