Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
フローが EditText1->EditText2->Spinner->Editext3 のように流れる登録フォームがありますが、タブを押すと、EditText2 コントロールのがスピナーではなく editText3 に転送されます。
Oncreate() の前にこれを使用します
Spinner spin = (Spinner) findViewById(R.id.spinner1); spin.setFocusable(true); spin.setFocusableInTouchMode(true); spin.requestFocus();