菜单栏上的几个按钮上的java.lang.NullPointerException

时间:2013-04-29 01:03:13

标签: android nullpointerexception

我有以下代码

    imgAbout = (ImageView) findViewById(R.id.imgAbout);
    imgAbout.setOnClickListener(new ButtonListner(RecipesList.this));

    imgFeedback = (ImageView) findViewById(R.id.imgFeedback);
    imgFeedback.setOnClickListener(new ButtonListner(RecipesList.this));

    imgSearchNav = (ImageView) findViewById(R.id.imgSearchNav);
    btnSearch = (Button) findViewById(R.id.btnSearch);
    edtSearch = (EditText) findViewById(R.id.edtSearch);

第4行正在告诉我nullpointerexception错误是我能找到的。

这是来自XML布局

<RelativeLayout 
    android:id="@+id/lytTitleBar"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:background="@drawable/titlebar">
    <TextView 
        android:id="@+id/txtTitleApp"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/app_name"
        android:textSize="16sp"
        android:textStyle="bold"
        android:textColor="@color/title_app"
        android:layout_centerVertical="true"
        android:layout_alignParentLeft="true"/>
    <ImageView
        android:id="@+id/imgAbout"
        android:layout_width="24dp"
        android:layout_height="24dp"
        android:src="@drawable/about"
        android:layout_centerVertical="true"
        android:layout_alignParentRight="true"/>

    <ImageView
        android:id="@+id/imgFeedback"
        android:layout_width="24dp"
        android:layout_height="24dp"
        android:layout_alignRight="@+id/txtTitleApp"
        android:layout_marginRight="34dp"
        android:layout_centerVertical="true"
        android:src="@drawable/feedback" />
</RelativeLayout>

每个人都没有这样做。在500多个有效安装中,我的开发者控制台中只有9个崩溃报告

1 个答案:

答案 0 :(得分:0)

确定。弄清楚了。 这个问题只发生在高分辨率药片上。 问题在于布局/大文件夹中没有这些按钮的xml参考。