I\'ve some settings page in my app. Once the activity gets starts directly it focus to edittext and i used following code to clear foucs.
If on starting the Activity it focuses on EditText on the screen. use
android:focusableInTouchMode="true"
in the parent containing that EditText. Like if EditText is inside a RelativeLayout use this line in the RelativeLayout.
If Come back from other activity edittext get focused.
put these line onStart() or on onReusme()
RelativeLayout focuslayout = (RelativeLayout) findViewById(R.id.RequestFocusLayout);
focuslayout.requestFocus();