How PutExtra In RecyclerView With Arraylist From JSON
I'm try to go another activity, from RecyclerView with determined position, and i need putExtra for load info in the destin activity. I'm based in this example, but i have problem
Solution 1:
try this
listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) {
// do on item click
}
});
it will fix below issue
Cannot resol symbol 'ListitemClickListener'
Post a Comment for "How PutExtra In RecyclerView With Arraylist From JSON"