編輯:關於Android編程
在用Eclipse進行Android的界面開發,通過findViewById試圖獲取界面元素對象時,該方法有時候返回null,造成這種情況主要有以下兩種情形。
第一種情形是最普通的。
比如main.xml如下,其中有一個ListView,其id為lv_contactbook
<?xml version="1.0"encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <EditText android:id="@+id/et_search" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="" /> <ListView android:id="@+id/lv_contactbook" android:layout_width="fill_parent" android:layout_height="wrap_content" /> </LinearLayout>
如果在Activity對應的代碼中,是這樣的寫的:
@Override public void onCreate(BundlesavedInstanceState) { super.onCreate(savedInstanceState); ListViewlv = (ListView)findViewById(R.id.lv_contactbook); setContentView(R.layout.main); //… }
即在setContentView調用之前,調用了findViewById去找main布局中的界面元素lv_contactbook,那麼所得到的lv一定是null。正確的做法是將上面代碼中加粗的哪一行,挪至setContentView方法調用之後。
第二種情形。
這種情況下通常是調用LayoutInflater.inflate將布局xml規定的內容轉化為相應的對象。比如有rowview.xml布局文件如下(比如在自定義Adapter的時候,用作ListView中的一行的內容的布局):
<?xml version="1.0"encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content" > <TextView android:id="@+id/tv_contact_id" android:layout_width="0px" android:layout_height="0px" android:visibility="invisible" android:gravity="center_vertical" /> <TextView android:id="@+id/tv_contactname" android:layout_width="wrap_content" android:layout_height="36dip" android:textSize="16dip" android:layout_marginTop="10dip" android:textColor="#FFFFFFFF" /> </LinearLayout>
假定在自定的Adapter的getView方法中有類似如下的代碼:
View rowview = (View)inflater.inflate(R.layout.rowview, parent, false); TextView tv_contact_id =(TextView)rowview.findViewById(R.id.tv_contact_id); TextView tv_contactname =(TextView)rowview.findViewById(R.id.tv_contactname);
有時候居然也會發現rowview非空,但tv_contact_id和tv_contactname都是null!仔細看代碼,怎麼也看不出錯誤來。到底是什麼原因造成的呢?答案是Eclipse造成的,要解決這個問題,需要這個項目clean一次(Project菜單 -> Clean子菜單),這樣就OK了。
第二種情況很隱蔽,因為代碼的確沒有錯。如果一時沒有想到解決辦法會浪費很多時間。
以上所述是小編給大家介紹的AndroidGUI27中findViewById返回null的快速解決辦法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對本站網站的支持!
1.什麼是Sqlite? SQLite是輕量級的、嵌入式的、關系型數據庫. 2.Sqlite儲存在Android系統的哪? 數據庫存儲的位置在data/data
之前開發單片機軟件還是上位機都習慣使用printf(),相信很多很會有和我一樣的習慣。開始學習安卓了,當然也很在意安卓的這個打印調試應該怎麼做呢?這裡使用的是日志記錄中添
前言經過幾年的發展和沉澱,Android開發中湧現出許多優秀的框架,比如:Retrofit、Afinal、OKHttp、ButterKnife、AndFix等等。這些框架
首先新建一個binding Library項目,項目名隨意,我這裡起名Bmap 然後將jar文件放入jars目錄下,生成屬性改為EmbeddedJar這時候如果