我有以下代码
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 个崩溃报告