Upon starting an activity, I want the screen to shift to x=5000, y=0. I used the following to try and achieve that:
//to aid in moving the focus to the main view.
TextView textView = new TextView(this);
textView.setFocusable(true);
textView.setVisibility(View.INVISIBLE);
params.setMargins(5000,0,10,10);
rl.addView(textView,params);
textView.requestFocus();
However it does not work, the focus is not moving to that location. Any help appreciated!