How can I get the position of item in recycler view while clicking on it using pagination?
Example : If I click on movie 10, Toast message should display
saying "Clicked on Item 10"
How can I get the position of item in recycler view while clicking on it using pagination?
Example : If I click on movie 10, Toast message should display
saying "Clicked on Item 10"
// Used to cache the views within the item layout for fast access
public class ViewHolder extends RecyclerView.ViewHolder implements
View.OnClickListener {
public TextView tvName;
public TextView tvHometown;
private Context context;
public ViewHolder(Context context, View itemView) {
super(itemView);
this.tvName = (TextView) itemView.findViewById(R.id.tvName);
this.tvHometown = (TextView) itemView.findViewById(R.id.tvHometown);
// Store the context
this.context = context;
// Attach a click listener to the entire row view
itemView.setOnClickListener(this);
}
// Handles the row being being clicked
@Override
public void onClick(View view) {
int position = getAdapterPosition(); // gets item position
if (position != RecyclerView.NO_POSITION) { // Check if an item was deleted, but the user clicked it before the UI removed it
User user = users.get(position);
// We can access the data within the views
Toast.makeText(context, tvName.getText(), Toast.LENGTH_SHORT).show();
}
}
}
for more info link
make interface into adapter class for click event on recycler view item.
onItemClickListner onItemClickListner;
public void setOnItemClickListner(CommentsAdapter.onItemClickListner onItemClickListner) {
this.onItemClickListner = onItemClickListner;
}
public interface onItemClickListner {
void onClick(int position);//pass your object types.
}
@Override
public void onBindViewHolder(ItemViewHolder holder, int position) {
// below code handle click event on recycler view item.
holder.itemView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
onItemClickListner.onClick(position); //pass any data
}
});
}
after that adapter class bind into recyclerview and make sure adapter not null then call below code..
adapter.setOnItemClickListner(new CommentsAdapter.onItemClickListner() {
@Override
public void onClick(int position) {
// pass data get here
Toast.makeText(getApplicationContext(),""+position,Toast.LENGTH_LONG).show();
}
});
make an interface for loading next page items
Then add on addOnScrollListener to load more item when your view comes to end
add onCreateViewHolder() is where I put the ProgressBar or not.
MainActivity that is where I put the LoadItems() to add the others items is
just followed this Github repository(Note: this is using AsyncTask maybe it's useful as my answer
Giving attribute from this answer