I am trying to get text of list view item. And I am making the header of Context menu is clicked text of item.
This is my view
<LinearLayout
android:id="@+id/innerlayout"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:clickable="true"
android:layout_weight="0.85"
android:orientation="vertical" >
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
And in oncreate i set the simple cursor adapter
SimpleCursorAdapter mysqliteadapter=new SimpleCursorAdapter(this,R.layout.thepatientrow,cursor,from,to);
setListAdapter(mysqliteadapter);
In OnCreateContextMenu, I want to set the Heder title By Selected Item Text
public void onCreateContextMenu(ContextMenu menu, View v,ContextMenu.ContextMenuInfo menuInfo){
super.onCreateContextMenu(menu, v, menuInfo);
menu.setHeaderTitle("");
menu.add(Menu.NONE,CONTEXT_MENU_DELETE_ITEM,Menu.NONE,"Delete");
menu.add(Menu.NONE,CONTEXT_MENU_UPDATE,Menu.NONE,"Update");
}
Please Tell your Valuable suggestions.
I Added Some images for easy your understand

And i want to show the context menu header, like below
