Can I display random page when our recycleview
apps?
I want to put a floatbutton
on my detailactivity.javaclass
and when I click it must display a page with my string data and image files.
mFlowerData = new FlowerData("Rose", getString(R.string.description_flower_rose),
R.drawable.rose);
mFlowerList.add(mFlowerData);
mFlowerData = new FlowerData("Carnation", getString(R.string.description_flower_carnation),
R.drawable.carnation);
How can I display it on the last page.
You can use something like this in your activity/fragment
and for updating the elements in the adapter:
you can improve how the elements are updated implementing a DiffCallback for your Flower class (link)