Есть ли в Android эквивалент textViewShouldBeginEditing.Если нет, то как нам добиться этой функциональности в Android?
textViewShouldBeginEditing
//in your layout make change in view android:focusable="false" android:focusableInTouchMode="false" //and after this in your activity check your desired condition, if condition true then view.setFocusable(true); view.setFocusableInTouchMode(true);