私は何時間もこれを解決する方法を模索してきました。私は、ActionBarの下に(Bluetoothの設定のような)スイッチを追加したいだけです。私はここで似たような質問を見つけましたが、それはおそらく古いものでした。getActionView()がnullを返すのはなぜですか
MainActivity:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.menu_main, menu);
MenuItem item = menu.findItem(R.id.myswitch);
switchButton = (Switch) item.getActionView();
return super.onCreateOptionsMenu(menu);
}
menu_main.xml
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto" >
<item
android:id="@+id/menu_switch"
android:title="off/on"
app:showAsAction="always"
app:actionLayout="@layout/switchlayout"
app:actionViewClass="android.support.v7.widget.Switch" />
</menu>
switchlayout.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<Switch
android:id="@+id/myswitch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:background="#1E88E5" />
</RelativeLayout>
しかし、どんなに私が何をすべきか、私は常に取得:
とにかくここに私のコードです
私はちょうど
R.id.myswitch
前の行が定義されている項目を定義したので、nullオブジェクト参照
私は混乱している上で「... getActionViewを()invodeする
試みは、そのアップI混乱をしましたか?
それを固定こと、ありがとう! – Plays2