RecyclerView With CardView
问题 I am using RecyclerView + CardView to list all the countries from A-Z like I have here But I want them to line up next to each other so save space like this What is the best way to achieve this? CardAdapter public class CardAdapter extends RecyclerView.Adapter<CardAdapter.ViewHolder> { List<Nationality> mItems; public CardAdapter() { super(); mItems = new ArrayList<Nationality>(); Nationality movie = new Nationality(); movie.setThumbnail(R.drawable.afghanistan); movie.setName("Afghanistan");