LinearLayout无法强制转换为android.widget.checkbox

时间:2013-07-23 15:37:36

标签: android runtime-error

我遇到的问题是,当包含以下声明时,我的应用在启动时崩溃并出现上述错误。

  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);
}

外部 是声明为

的同一个类的数据成员
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>

3 个答案:

答案 0 :(得分:0)

getActionView()返回此菜单项的当前设置操作视图。试试这种方式

View view =  menu.findItem(R.id.location).getActionView(); 
CheckBox checkBox = view.findViewById(R.id.external);

答案 1 :(得分:0)

试试这个:

external= (CheckBox) menu.findItem(R.id.location).getActionView().getChildAt(0);

这一行:

external= (CheckBox) menu.findItem(R.id.location).getActionView();

实际上获得父线性布局。

答案 2 :(得分:0)

getActionView为您提供布局,而不是复选框。

external= (CheckBox) menu.findItem(R.id.location)
             .getActionView()
             .findViewById(R.id.external);