在我的表单中,我有不同的EditText
区域和最后一个Button
。
如果我在我的XML文件中的EditText之间使用android:nextFocusForward
和android:nextFocusDown
一切正常,但如果我在最后一个EditText中使用这些,以便将焦点放在我得到的Button上:
java.lang.RuntimeException: Unable to start activity
ComponentInfo{org.test/org.test.myActivity}: java.lang.ClassCastException:android.widget.TextView
我甚至尝试过:
android:focusableInTouchMode="true"
当然它们在同一个GroupView中。
答案 0 :(得分:0)
如果这样可以尝试,当然这是一个代码解决方案而不是xml:
button.requestFocus()