我正在使用it.gmariotti.cardslib.library.view.CardListView
用于它的适配器并控制卡片列表。
it.gmariotti.cardslib.library.view.CardView
看起来很糟糕,并且在非常烦人的地方添加了填充和边距。
如何将it.gmariotti.cardslib.library.view.CardView
和it.gmariotti.cardslib.library.view.CardListView
看作完全,就像默认的android.support.v7.widget.CardView
一样?
(这是可能的,因为它在演示cardlib
应用中以某种方式完成。
fragment_cards.xml
<it.gmariotti.cardslib.library.view.CardListView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/card_list"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
test_card.xml
<it.gmariotti.cardslib.library.view.CardView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="200dp"
style="@style/card.native"/>