下面是我在 xml 中的布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<it.gmariotti.cardslib.library.view.CardViewNative
android:id="@+id/my_nice_card_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
card:card_layout_resourceID="@layout/native_cardwithlist_layout"
style="@style/card_external"/>
</LinearLayout>
我想以编程方式创建这个视图CardViewNative
,它来自cardlib 库。card:card_layout_resourceID
但是我对和style
属性感到困扰。如何CardViewNative
在代码中创建它?