cardslib icon indicating copy to clipboard operation
cardslib copied to clipboard

Dynamic TextView MaterialLargeImageCard

Open s3000-f opened this issue 8 years ago • 0 comments

I have a list of MaterialLargeImageCard's in my app and there are 4 TextViews in each of these cards. I need to set text of these TextViews while making the card the way the cards where initiated in the docs was like

MaterialLargeImageCard card =
                    MaterialLargeImageCard.with(rootView.getContext())
                            .setTextOverImage("Username " + (i + 1))
                            .useDrawableId(R.drawable.soosk)
                            .setupSupplementalActions(R.layout.carddemo_native_material_supplemental_actions_large_icon, actions)
                            .build();

how can I initiate the TextViews while doing this?

s3000-f avatar Dec 03 '16 13:12 s3000-f