我面临的问题是,当包含以下语句时,我的应用程序在启动时崩溃并出现上述错误。
external= (CheckBox) menu.findItem(R.id.location).getActionView();
带有此语句的代码块是
@Override
public boolean onCreateOptionsMenu(Menu menu)
{
// TODO Auto-generated method stub
new MenuInflater(this).inflate(R.menu.actions,menu);
Log.d("Action","inflated");
external= (CheckBox) menu.findItem(R.id.location).getActionView(); <<<error
Log.d("Action","external initialized");
return super.onCreateOptionsMenu(menu);
}
external是声明为同一类的数据成员
private CheckBox external=null;
膨胀的菜单是:
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+id/location"
android:actionLayout="@layout/action_location"
android:showAsAction="never">
</item>
<item
android:id="@+id/save"
android:title="Save"
android:showAsAction="always">
</item>
<item
android:id="@+id/saveBackground"
android:showAsAction="always|withText"
android:title="in BG">
</item>
如果该特定行被注释掉,应用程序就会正常启动。可能是什么问题 ?
[更新] 这是 action_location.xml 内容
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<CheckBox
android:id="@+id/external"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:title="@string/external"
/>
</LinearLayout>