Hi How can we remove the default selection of editText.while I am switching over to another page(which contain edit text) EdiText is getting focussed and keyboard is pop up.. I want to remove this behaviour .. for that I created Empty textview and set focus for that.. below is code which i used.
View emptyView = (View) findViewById(R.id.emptyView); emptyView.setFocusableInTouchMode(true); emptyView.requestFocus(); Its working fine in all the device except froyo.Am I doing anything wrong.. how can we fix it? please help.. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

