您好,登錄后才能下訂單哦!
這篇文章主要介紹了Android中的requestFocus怎么使用的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇Android中的requestFocus怎么使用文章都會(huì)有所收獲,下面我們一起來看看吧。
requestFocus的使用
一句話概括:
<requestFocus />: 標(biāo)簽用于指定屏幕內(nèi)的焦點(diǎn)View。
布局資源文件的根節(jié)點(diǎn)可以使用容器控件(如LinearLayout、FrameLayout等),也可以使用非容器控件(如:EditText、TextView等)。對(duì)于非容器控件,只能在非容器控件標(biāo)簽中放<requestFocus />標(biāo)簽,表示將當(dāng)前控件設(shè)為焦點(diǎn)。如下代碼:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <Button android:id="@+id/buttonRingtone" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="設(shè)置來電鈴聲" /> <Button android:id="@+id/buttonAlarm" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="設(shè)置鬧鐘鈴聲" /> <Button android:id="@+id/buttonNotification" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="設(shè)置通知鈴聲" /> <EditText android:id="@+id/text" android:layout_width="match_parent" android:layout_height="wrap_content" > <!-- 當(dāng)前控件處于焦點(diǎn)狀態(tài) --> <requestFocus /> </EditText> </LinearLayout>
關(guān)于“Android中的requestFocus怎么使用”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“Android中的requestFocus怎么使用”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。