Is https://developer.android.com/reference/android/view/View#setLayoutDirection(int) useful?
public class Page1 extends Fragment {
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
return inflater.inflate(R.layout.page, container, false);
}
}
public class Page2 extends Fragment {
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.page, container, false);
view.setLayoutDirection(View.LAYOUT_DIRECTION_RTL); //<--
return view;
}
}