在用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了。

第二种情况很隐蔽,因为代码的确没有错。如果一时没有想到解决办法会浪费很多时间。

更多相关文章

  1. Android(安卓)2.3 代码混淆proguard技术介绍
  2. 最全面的Android(安卓)Studio使用教程
  3. Android(安卓)内置应用截屏方法
  4. android中的Handler和Callback机制
  5. android自动化测试CTS源码分析之一
  6. Android中的JNI和NDK编程实践
  7. Android(安卓)弹出式布局之Dialog源码分析
  8. Material Design之TabLayout的用法(标题栏滑动+ViewPager)
  9. Android中mesure过程详解

随机推荐

  1. IntentTest
  2. 获取mic音量大小
  3. android在线播放mp4/3gp
  4. 一行代码引来的安全漏洞就让我们丢失了整
  5. android禁止状态栏下拉
  6. introduction to JAVA-based open-source
  7. android app 内部文件路径
  8. Android(安卓)设置飞行模式
  9. Navigation(2)
  10. android关于动画完成动作