How to make span count and icon size automatic
问题 I am using recycler view with card view to show icons in my application. I am not able to figure out how to resize the app icons and increase/decrease the span count automatically depending on the screen size. Here is what I am doing to display it and the spen count is fixed to 3. RecyclerView mrv = (RecyclerView) findViewById(R.id.recyclerview_id); RecyclerViewAdapter myAdapter = new RecyclerViewAdapter(this, lsStore); mrv.setLayoutManager(new GridLayoutManager(this, 3)); mrv.setAdapter