Android中是否有textViewShouldBeginEditing
的等效项。如果不是,我们如何在Android中实现此功能?
答案 0 :(得分:0)
//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);