you should post your code (formatted correctly) no a summation of your code. also, you should post the code for the adapter you used to populate the list. this would possibly get you some answers.
On Jan 10, 9:27 am, Seshu <[email protected]> wrote: > Hi Every Body, > I am using custom list view in my app. first time if i clicked > the custom list view means it's going 2 activity, and if i scrolled > the list and then click is not responding. i am not getting where the > problem is coming. I wrote the list view like that > > <LinearLayout android:layout_width="fill_parent" > android:layout_height="fill_parent" > android:orientation="vertical" > android:id="@+id/commonlistlayout" > android:background="@drawable/ > transparent1_bg" > android:layout_margin="10dp"> > <ListView android:layout_height="fill_parent" > android:id="@+id/ > commonlistview" > android:layout_width="fill_parent" > android:scrollingCache="false" > android:scrollbars="none" android:fadingEdge="none" > android:layout_below="@+id/commonlistheadtext" > android:layout_margin="10dp" > /> > </LinearLayout> > > and in activity class i wrote like that. > > class myactivity extends Activity { > ListClass listclass; > ListView list > oncreate() { > list = (listView).... > listclass = new ListClass(); > list.setAdapter(list); > list.setonItemClickListnent() { > event triggered.. > > } > > can any one solve 2 this problem, > Thanks in advance, > S.Seshu, > [email protected] > > > > > > > > } > } -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

