When I make a static card with a FULL image layout, it looks like there's a shading gradient that fades from dark to clear from bottom to top. This is great for cards that have text, but if I don't have text, I'd like to see the image without modification.
Card card = new Card(this);
card.setImageLayout(Card.ImageLayout.FULL);
card.addImage(R.drawable.full_wiring);
mViews.add(card.toView());
I'm interested if there's a way to specify this with Cards. I know I could make a regular android view as an alternative.