如果我执行以下操作,最初会关注哪个按钮(后面或下一个)?:
关注java代码中的下一个:
protected void onResume() {
this.next.setFocusable(true);
this.next.setFocusableInTouchMode(true);
this.next.requestFocus();
}
然后专注于布局xml:
<Button android:textSize="10.0dip"
android:textColor="#ff000000"
android:id="@id/back"
android:layout_width="50.0dip"
android:layout_height="30.0dip"
android:text="@string/back" />
android:focusable="true"
android:focusableInTouchMode="true"
<requestFocus />
/>