I'm attempting to grab a menuItem
when onCreateOptionsMenu
is called and override the default view by using setActionView
(I'm aware I could use CardScrollView
and CardScrollAdapter
but this is a lot of work just get a menu up and running).
menu.xml
:
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/test_item"
android:title="Test 1">
I'll attempt to override this programmatically in onCreateOptionsMenu
:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.main, menu);
View testView = new CardBuilder(this, CardBuilder.Layout.TEXT)
.setText("Test 2.")
.getView();
MenuItem item = menu.findItem(R.id.test_item);
item.setActionView(testView);
return true;
}
However, when I view this options menu through the glass, Test 1 still shows. What am I doing wrong?
If you want to change the menu title dynamically, you can override onPrepareOptionsMenu.
Hope this helps.