Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

I have listview like below(All data shown from db only. No xml).

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

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

share|improve this question
Please make your question more apparent. I don't understand what you are asking. – JoxTraex Jan 30 '12 at 7:41
Added some stuff. – Coder Decoder Encoder Jan 30 '12 at 8:47

1 Answer

up vote 3 down vote accepted
onCreateContextMenu(ContextMenu menu, View v,ContextMenu.ContextMenuInfo menuInfo)

View v refers to the selected item on the list. In R.layout.thepatientrow, find the id of the TextView pertaining to the header (for example R.id.header_text_view) of your layout, then:

    menu.setHeaderTitle(((TextView)v.findViewById(R.id.header_text_view)).getText().toString());
share|improve this answer
thanks for your valuable answer. If i use "menu.setHeaderTitle(((TextView)v.findViewById(R.id.header_text_view)).getText()‌​.toString())" it returns first list item value only. – Coder Decoder Encoder Jan 30 '12 at 8:33
try replacing 'v' with your_list_view.getSelectedView() – Josephus Villarey Jan 30 '12 at 11:04
Please tell something more. I cant get you exactly what you said. – Coder Decoder Encoder Jan 30 '12 at 11:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.