RecyclerView Horizontal Scroll View Show part of side items in RecyclerView android studio . you can see in below image one item is in the Center and other two item in sides some part visible
@Override
public RecyclerView.ViewHolder onCreateViewHolder(@NonNull
ViewGroup parent, int viewType) {
View view =
LayoutInflater.from(parent.getContext())
.inflate(R.layout.dayrow, parent, false);
ViewGroup.LayoutParams
layoutParams = view.getLayoutParams();
layoutParams.width = (int)
(parent.getWidth() * 0.9);
view.setLayoutParams(layoutParams);
return new MYViewholder(view);
}
}
Comments
Post a Comment