use of it.gmariotti.cardslib.demo.extras.cards.GoogleKnowwithList in project cardslib by gabrielemariotti.
the class CardWithListFragment method initCard.
/**
* This method builds a simple card
*/
private void initCard() {
//Weather Card
card = new WeatherCard(getActivity());
card.init();
//Set card in the cardView
CardView cardView = (CardView) getActivity().findViewById(R.id.carddemo_weathercard);
cardView.setCard(card);
//May know card
GoogleKnowwithList card2 = new GoogleKnowwithList(getActivity());
card2.init();
//Set card in the cardView
CardView cardView2 = (CardView) getActivity().findViewById(R.id.carddemo_mayknowcard);
cardView2.setCard(card2);
}
Aggregations