1

我有以下代码

    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 个崩溃报告

4

1 回答 1

0

行。弄清楚了。这个问题只发生在高分辨率平板电脑上。问题在于布局/大文件夹中的这些按钮没有 xml 引用。

于 2013-04-30T01:09:52.463 回答