0
votes
0answers
3 views

viewpagerindicator with different context menu for each page

I am using ViewPagerIndicator in my application. I need to create context menu for each page. I refer this link, but it is having the way to create option menu. I want to implement contextMenu. ...
2
votes
0answers
78 views

Get context of PopupMenu like ContextMenu

So my ExpandableListView has group rows that are defined like : group_row.xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout ...
0
votes
3answers
26 views

PopupView.showAtLocation is undefined for the type View

I am working on an app in which I display a ContextMenu. Now, when one of the menu items in this ContextMenu is pressed, I would like to display a PopupWindow. I have found some examples of how to use ...
0
votes
1answer
15 views

Title of ContextMenu from ListView item

I am trying to set the title of the ContextMenu from the selected item in the ListView. However everytime I run this on the emulator, it crashes and I have to Force Close it. DDMS shows that an ...
1
vote
2answers
37 views

How to get position of clicked listview in single clicked contextmenu

I have a defined listview in xml and add the data by modifying it through adapter.. I want to display context menu by single click the list, which I already done.. But how to get the clicked list ...
0
votes
2answers
26 views

Creating a contextual menu when long pressing item in android

I am creating a checklist and it allows the user to add new items to the list, I am trying to allow the user to delete an item when they want to. So I am creating a contextual menu using this that ...
0
votes
1answer
35 views

NoSuchMethodException on Android contextMenu

My app has a button which when clicked, shows a context menu. On clicking the first itema a datepicker dialog fragment opens. It's working in Android 2.3 but i am getting NoSuchMethoodExcepton in ...
0
votes
1answer
33 views

i dont know how to get the position of the img that i click so i can pass it to next acitvity

my Grid View is working okay and displays image from the Sdcard.When i long press an image a contextual task box open.One of the option is View(to view in full screen).i dont know how to get the id or ...
0
votes
1answer
80 views

Get a item selected in listview when i generate context Menu

I want get a selected item from a listview. When maintain a longclick a listview item I get the context menu (everything works) but I want to know how to detect what is POSITION which to made ​​the ...
1
vote
1answer
112 views

Menu Icon doesn't appear in my Android menu

In my app menu icon is not displaying, For me at present text/string is displaying but i need icon/image intent of text. Also try using xml format menu calling. Android version is ver_4 ...
1
vote
2answers
87 views

Opening a Context menu on long press for a View?

All the examples and questions I've seen regarding context menus have been where you register the context menu to a button or something similar. In my case I have a display sized View (OSMDroid map ...
0
votes
2answers
78 views

Android: How to make a clickable ListView with a ContextMenu?

I have a clickable ListView and try to make a Context Menu for the Items but if I get a long click the first time it activates the onListItemClick Method instead. The next time it works. If I activate ...
0
votes
1answer
46 views

Two ContextMenu's in Same Activity/Fragment

I have two ContextMenu's in same Activity or Fragment. Here is onCreateContextMenu where I handle them both: @Override public void onCreateContextMenu(ContextMenu menu, View v, ...
1
vote
0answers
36 views

Android context menu prompt only on second click

I have a serious problem in my Android apps. I have a list view which lets say 1 to 10. Each of them can see their details through clicking it At the same time, I have context menu on each list ...
0
votes
1answer
30 views

ContextMenu in ExpandableListView

hi frnds in my application i use expandableListView. an i need to integrate a contextMenu for the expandable listView. in my expandable ListView i inflate different layouts for different child. so ...
0
votes
0answers
50 views

How to dynamically set number of items in IconContextMenu?

I have found some example of creating ContextMenu with icons inside and it works. I have managed to adapt that example for my application to create context menu with 6 items with icons in front of ...
2
votes
5answers
390 views

Android GridView OnItemLongClick listener called after OnItemClick

Basically I want to show a different context menu when the user short clicks or long clicks on a cell in the grid view. The issue I have is that if the user short clicks the OnItemClick listener is ...
2
votes
1answer
40 views

Android: About custom ListView

I made custom ListView in xml If I do not use the CheckBox, then an item in the list can be selected for the context menu <?xml version="1.0" encoding="utf-8"?> <RelativeLayout ...
0
votes
1answer
33 views

Detecting onContextMenu clicks in a fragment

So I've successfully connected a context menu pop up to a list view in a fragment. The items show up, but when I click on them, onContextMenuItemSelectedMenu() is ignored and instead onMenuItemClick() ...
0
votes
0answers
41 views

How to add own application to SMS context menu?

Currently if I long-tap on the SMS message, there is a context menu. One of the item there is Send (or Share - not sure about exact name in English). Then here I see applications like Add To Pocket, ...
0
votes
1answer
63 views

Android context sub-menu opened-closed-reopened by itself

I have a context menu which include a sub-menu, when-ever I tap on the item to open the sub-menu, the sub-menu opens/closes and reopens quickly. That's very annoying but more problematic some of my ...
1
vote
0answers
46 views

Error rotating contextmenu

I've been getting this error throughout my program when I open a context menu then rotate the screen. 03-19 16:09:25.627: E/InputQueue-JNI(11610): channel '41c6ffc0 ...
0
votes
1answer
66 views

getting “android.content.res.resources$notfoundexception”

I have 3 tabs and each tab has got a listview. I have registered these listviews for contextual menu. I have three different arraylists in which i store the items for respective listviews. now i want ...
0
votes
1answer
19 views

difference between contextual actions & surface actions in android 4.0+

i need to clarify for my app so that can use the terminology for ease of development in my android app. Any links or related reference information will be appreciated.
0
votes
0answers
103 views

Context Menu not working with Expandable list view item

I want to implement context menu for expandable list child item in android. I am using the following code - mExpandableListView.setOnItemLongClickListener(new OnItemLongClickListener() { ...
0
votes
1answer
109 views

How do i implement ContextMenu for ListView having SeparatedListAdapter?

I am showing some data in list view in sections using SepatateListAdapter from this post My code is as follows: ListView photos_list = (ListView) findViewById(R.id.photos_list); separate_adapter = ...
0
votes
0answers
127 views

Android Options Menu: Resource not found Exception: Only on 4.0.x

at first, sorry about my english skills. It isn't the best... I'm not a beginner in android developm., but don't understand what I can do, to solve this problem. These are the errors wich will thrown, ...
0
votes
1answer
42 views

Context menu in Android DialogPreference… is it possible?

I'm trying to create a context menu in a DialogPreference for an Android app (targeting API level 8, in case it's relevant). I've managed to get the menu to show (when an item in a ListView is ...
0
votes
1answer
64 views

Context menu and ToggleButton in ListView row

I have got a ListView, whose row contains two TextViews (either of them is invisible because it contains a primary key) and one ToogleButton. Now I have to realize context menu for my ListView, but if ...
2
votes
0answers
55 views

Android Development: Nested Context Menus?

Is it possible to have nested context menus? I am working on an app which needs to provide the users with various functionality, and after much thought I came to the conclusion that using a context ...
1
vote
2answers
41 views

how to determine which class the item belongs to from onContextItemSelected

I have an expandListView diaryDisplaylist this is adapter DiaryExpandListAdapter mAdapterForAll which will be used to fill the diaryDisplayList code snippet which does this: mAdapterForAll = ...
0
votes
1answer
61 views

ListFragment won't refresh

here my code inside my ListFragment (I am using a context menu): @Override public boolean onContextItemSelected(MenuItem item) { AdapterView.AdapterContextMenuInfo info = ...
0
votes
0answers
164 views

Android ExpandableListView inside an ExpandableListView: context menu

I have a layout with some ExpandableListView inside an ExpandableListView (three layers: groups, subgroups and children). I want to add a context menu in the children to be able to delete some rows. I ...
1
vote
0answers
73 views

Create custom layout for contextmenu

Can you inflate a custom xml layout for the body of a context menu? Right now I have a context menu working on longpress but I want to make it look better than just a list of text options. I'm using ...
0
votes
1answer
104 views

Edit List Item when Edit is clicked and Save in Context Menu in Android

I am using Android v4. I have created a list View which displays person contacts public class MainActivity extends Activity { public ListView mainListView ; public ArrayAdapter<String> ...
0
votes
1answer
74 views

Override the general paste context menu in Android

I think that this is not possible but I think it is better to ask someone who knows the answer for sure. Is it possible to create an android application that affect the context menu in all ...
0
votes
0answers
66 views

Android listview displays context menu while scrolling

I have a custom listview implementation in which i have overridden the onScroll and onLongPress. Both the methods return true indicating that the event was handled so that no other event gets fired. ...
0
votes
1answer
105 views

Comparing Views in onCreateContextMenu

I have an activity with an EditText box and a ListView. I also Override onCreateContextMenu like this: @Override public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo ...
0
votes
0answers
180 views

Android Preference activity create context menu onclick on dynamic preference

Hello I am attempting to create a context menu or somthing of its effect on a completely dynamic PreferenceActivity, So here is the basic idea. I am loading data from my server and population the ...
0
votes
0answers
310 views

Change context menu header divider color android Sherlock activity.

I am developing small android application in which i am using Sherlock action. everything working fine. but what I want to do i want to context menu header divider color. I change Sherlock library ...
0
votes
1answer
151 views

Longpressing EditText causes Crash

For some reason, it is trying to bring up a context menu when I long press an EditText box (such as to paste in data). Here is LogCat: 01-26 12:00:22.243: E/AndroidRuntime(22300): FATAL EXCEPTION: ...
1
vote
0answers
141 views

adding a DropDown Menu(list navigation) and Textview together in the Main action bar at the top.

I need to align a spinner(list navigation in action bar) and a tab layout , at the top of the action bar like side by side. and at the bottom of the screen i need four more action items they are ...
0
votes
1answer
378 views

Invoke context menu on long click on ListView without items

In my app I have a ListView, which I register for context menu. On long click, I invoke the context menu and from there deal with the item, on which the long click happened. This works fine. However ...
1
vote
2answers
99 views

Android: Issue while using ContextMenu on Dialog

I have created a context menu. The context menu appears, when I do a longclick on the listitems. So far so good... But when i click on a contextitem, nothing happens. Does anyone know this issue? ...
0
votes
1answer
176 views

get listview row onContextItemSelected

I'm doing a proyect where i have a view with multiple listview created at runtime, every listview load specifics rows of a database. and i want to implement a contextmenu. The problem is how can i get ...
0
votes
1answer
86 views

How to close context menu when switching to another frame?

I have an app with two fragments, every fragment has a listview. When selecting elements from the list the context menu appears automatically, I handle events an so on ... so far so good, but my ...
0
votes
1answer
79 views

Get reference to list item from context menu

I would like to get the position in the list from the item that triggers the context menu. Here is my code: @Override protected void onListItemClick(ListView l, View v, int position, long id) { c ...
0
votes
1answer
93 views

Android Selecting wrong data from context menu

I've been searching all day for an answer to this, so hopefully someone can help me. I have a piece of code which should select an item from a ListView created from a SQLite DB, return that to a ...
0
votes
2answers
88 views

context menu disappears on menu item click

I am using a context menu for my textview.I made setCheckable() property as true for every menu items. When i click on first menu item it is checked but menu is disappearing. Is it possible to check ...
0
votes
1answer
97 views

Adding icons to menu items in context list

Hi guys I am trying to add icons to the list of items in my context menu triggered when the user long clicks on a list view item. The list is displaying fine along with the context menu, the only ...

1 2 3 4 5 8