Re: [android-developers] how to get item from grid view at specific postion

2013-12-28 Thread Amit Mangal
I apologize if I insulted I was just frustrated please forgive me On Dec 28, 2013 6:56 AM, "TreKing" wrote: > > On Fri, Dec 27, 2013 at 9:49 AM, Amit Mangal > wrote: > >> Hi trek in I am dwawing overlay on the button which is clicked if u need >> code I can send but I m sure now you should leave

Re: [android-developers] how to get item from grid view at specific postion

2013-12-27 Thread TreKing
On Fri, Dec 27, 2013 at 9:49 AM, Amit Mangal wrote: > Hi trek in I am dwawing overlay on the button which is clicked if u need > code I can send but I m sure now you should leave programming as u told u r > developing last 4 years u r just wasting programming resources I think you just insulted

Re: [android-developers] how to get item from grid view at specific postion

2013-12-27 Thread Amit Mangal
Hi trek in I am dwawing overlay on the button which is clicked if u need code I can send but I m sure now you should leave programming as u told u r developing last 4 years u r just wasting programming resources On Dec 13, 2013 9:18 AM, "TreKing" wrote: > > On Thu, Dec 12, 2013 at 11:01 AM, Amit

Re: [android-developers] how to get item from grid view at specific postion

2013-12-12 Thread TreKing
On Thu, Dec 12, 2013 at 11:01 AM, Amit Mangal wrote: > Trekin i dont know the solution but one hundered percent sure that u r > wrong Let me get this straight. You came here asking for help with this issue. You admit you don't know the answer. Yet you are somehow 100% sure that what I've told y

Re: [android-developers] how to get item from grid view at specific postion

2013-12-12 Thread Amit Mangal
Trekin i dont know the solution but one hundered percent sure that u r wrong On 12-Dec-2013 7:40 AM, "TreKing" wrote: > > On Wed, Dec 11, 2013 at 5:14 PM, Amit Mangal > wrote: > >> i am trying to add saveForLaterOverlay on button pressed number item in >> grid view but nothing happing this meth

Re: [android-developers] how to get item from grid view at specific postion

2013-12-11 Thread TreKing
On Wed, Dec 11, 2013 at 5:14 PM, Amit Mangal wrote: > i am trying to add saveForLaterOverlay on button pressed number item in > grid view but nothing happing this method just executing when i click the > button on image but doing nothing. Your main problem is calling getView() on the adapter. Th

Re: [android-developers] how to get item from grid view at specific postion

2013-12-11 Thread Amit Mangal
Here is the code of my getview on button click where i am trying to add relative layout but nothing happing Holder holder; if (convertView == null) { convertView = inflater.inflate(R.layout.grid_image_row, null); holder = new Holder();

Re: [android-developers] how to get item from grid view at specific postion

2013-12-11 Thread Justin Anderson
GridView uses an adapter... all of the changes you are talking about doing should be done in your adapter's getView() method. Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Wed, Dec 11, 2013 at 10:09 AM, TreKing wrote: > > On Tue, Dec 10, 2013 at 11:5

Re: [android-developers] how to get item from grid view at specific postion

2013-12-11 Thread TreKing
On Tue, Dec 10, 2013 at 11:50 PM, Amit Mangal wrote: > i get position of button pressed using get tag but i am unable to get the > relative layout on whihc image and button is displaying. > > any idea how to get that layout view Your question is not really clear. What does your hierarchy look li

[android-developers] how to get item from grid view at specific postion

2013-12-10 Thread Amit Mangal
Hi team, i m having grid view which is displaying 2 images per row and having 2 columns. each image is having one image button at its bottom right corner. i need to get relative layout view in which image is displaying on grid view so that i could add some overlay item on the selected button imag