Кажется, всплывающее меню не может установить заголовок. Я думаю, вы могли бы вместо этого использовать PopupWindow .
Например:
Button button = FindViewById<Button>(Resource.Id.button1);
button.Click += (s, arg) => {
TextView textView = new TextView(this);
textView.Text = "header";
ListView listView = new ListView(this);
listView.AddHeaderView(textView);
var items = new string[] { "menu1", "menu2", "menu3" };
listView.Adapter = new ArrayAdapter<string>(this, Resource.Layout.listitem, items);
listView.ItemClick += List_ItemClick;
PopupWindow popupWindow = new PopupWindow(this);
popupWindow.Width = ViewGroup.LayoutParams.WrapContent;
popupWindow.Height = ViewGroup.LayoutParams.WrapContent;
popupWindow.ContentView = listView;
popupWindow.OutsideTouchable = false;
popupWindow.Focusable=true;
popupWindow.ShowAsDropDown(button);
};
А listitem.axml
:
<?xml version="1.0" encoding="utf-8"?>
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:text="Text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/textView1" />