如何在CardView中使用app前缀制作Style

时间:2017-02-22 12:24:25

标签: android xml

我在这段代码中有一些代码行可能会使用内容填充,因为android:padding属性不起作用但内容填充正常工作而且android:elevation提供支持21以上API所以可能使用cardElevation但这个应用XML namspace前缀使用如何制作cardView的风格?

Gradle Dependency:

compile 'com.android.support:cardview-v7:25.0.1'

代码:

<android.support.v7.widget.CardView 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_margin="5dp" 
    app:contentPadding="5dp" 
    app:cardElevation="3dp">

    <TextView 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:text="ABC" /> 

</android.support.v7.widget.CardView>

0 个答案:

没有答案