Skip to content Skip to sidebar Skip to footer

How To Call Another Activity Using Listview Item Row

I am making an application in which fetching data from xml using url in listview, now i want to call another activity using listview item row, for example :- if user will click fir

Solution 1:

I think here is the error : <activity android:name="Item"></activity>

it must be

<activityandroid:name=".Item"></activity>

Post a Comment for "How To Call Another Activity Using Listview Item Row"