Multiple Activitys On Listview Clickable
I have a problem with my code iv been trying to fix this error but still no luck. I would like a new activity to start when a item in the list view is clicked i looked for some tim
Solution 1:
Since you are extending the ListActivity, the onItemClickListener will not work. You have to use onListItemClickListner and then it will work.
Solution 2:
You are using ListActivity but You don't have any list in Your view.
You should have an element
<ListViewandroid:id="@android:id/list"android:layout_width="match_parent"android:layout_height="wrap_content" ></ListView>
in Your layout to be able to use ListActivity.
But it look like You have cut some of xml as I don't see closing RelativeLayout tag
Post a Comment for "Multiple Activitys On Listview Clickable"