1
我使用CardView
作爲RecyclerView
的自定義項目。它們在Android 5+上看起來不錯,但在較舊的Android版本上卻很不一樣。Pre-Lollipop設備上的「醜陋」CardView
的代碼是一樣的:
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?android:attr/listPreferredItemHeight"
card_view:cardCornerRadius="1dp"
card_view:cardElevation="1dp">
... other items ...
</android.support.v7.widget.CardView>
有沒有辦法實現了Android 5+預行爲 - 棒棒糖設備?