Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 高級開發 >> Android 取消自動獲得焦點和彈出對話框

Android 取消自動獲得焦點和彈出對話框

編輯:高級開發

 !-- Dummy item to prevent AutoCompleteTextVIEw from receiving focus -->

  < LinearLayout

  android:focusable="true" android:focusableInTouchMode="true"

  android:layout_width="0px" android:layout_height="0px"/>

  < !-- :nextFocusUp and :nextFocusLeft have been set to the id of this component

  to prevent the dummy from receiving focus again -->

  < AutoCompleteTextVIEw android:id="@+id/text"

  android:layout_width="fill_parent" android:layout_height="wrap_content"

  android:nextFocusUp="@+id/text" android:nextFocusLeft="@+id/text"/>上面是為了防止

  AutoCompleteTextVIEw開始就獲得焦點,所以在他的父層設置了焦點設置

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved