[android-developers] Button click listview has to visible

2011-08-26 Thread arun kumar
Hi i defined a button at the bottom in the xml fileand i made (listview) invisible in the xml filein java code i give list view implementationhere when i click on the button that list view has to appear .. Thaks in advance ?xml version=1.0 encoding=utf-8? RelativeLayout

Re: [android-developers] Button in ListView Event

2010-05-08 Thread TreKing
On Wed, May 5, 2010 at 11:50 PM, Siow yys...@gmail.com wrote: below is my code, but have error, any one can help one it?? You want to tell us what the error is, or should we guess? - TreKing -

[android-developers] Button in ListView Event

2010-05-07 Thread Siow
I have one custom Listview with a button, now i want to click the button and open another class. below is my code, but have error, any one can help one it?? this one is a custom adapter. holder.btviewdetail.setOnClickListener(new OnClickListener() { public

[android-developers] Button in ListView

2010-03-15 Thread Anton Pirker
Hello List! I have a problem that some other people on this list (and other android sites) also have/had, but was unable to find a solution. I have a ListView with a custom view for the row which looks like this: RelativeLayout ToggleButton/ TextView/ /RelativeLayout Its basically a

Re: [android-developers] Button in ListView

2010-03-15 Thread NapoleonLiu
Hi I have the same problem , at last i do it like this I write two GestureListener, implement onSingleTapUp method. set both the button and other view's clickable to false and set them OnTouchListener(NOT onClickListener) with GestureListener. if you haven't used GestureListener, you can learn