在最新的Android SDK中,我们现在有了新的CardView,我已经用新版本替换了我的旧版CustomCardView,但是在旧版本的Android上运行时,我看到了state_pressed
& state_focused
是丑陋的方块,显示在CardView上方......
有没有人知道如何在新的CardView中模拟以下内容,但仅限于使用旧版本的Android?
<selector xmlns:android="http://schemas.android.com/apk/res/android"
android:enterFadeDuration="150"
android:exitFadeDuration="150" >
<item android:state_pressed="true"
android:drawable="@drawable/card_on_press"/>
<item android:state_focused="true" android:state_enabled="true"
android:drawable="@drawable/card_on_focus"/>
<item android:state_enabled="true"
android:drawable="@drawable/card_default"/>
<item android:state_enabled="false"
android:drawable="@drawable/card_on_press"/>
</selector>
对于那些您感兴趣的人,我现在正在使用的是CardView:
<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/CardView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:foreground="?android:attr/selectableItemBackground"
android:onClick="RunSomeMethod"
card_view:cardCornerRadius="4dp"
android:focusable="true"
android:elevation="2dp">
<LinearLayout
android:id="@+id/LinearLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:focusable="false"
android:visibility="visible">
</LinearLayout>
</android.support.v7.widget.CardView>
答案 0 :(得分:14)
使用以下代码修复:
值-V21 \ styles.xml:
<style name="CardViewStyle" parent="CardView.Light">
<item name="android:foreground">?android:attr/selectableItemBackground</item>
</style>
值\ styles.xml:
<style name="CardViewStyle" parent="android:Widget.TextView">
<item name="android:foreground">@drawable/card</item>
</style>
layout \ main_layout.xml中的卡片:
<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/Card_View"
style="@style/CardViewStyle"
android:layout_width="480dp"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
card_view:cardCornerRadius="4dp"
android:elevation="2dp">
这将允许您在v21 +中提供动画,但也可以在v21之前提供替代动画,而不是大蓝/灰色方块。
以下是我对您感兴趣的人使用的card.xml:
<selector xmlns:android="http://schemas.android.com/apk/res/android"
android:enterFadeDuration="150"
android:exitFadeDuration="150" >
<item android:state_pressed="true"
android:drawable="@drawable/card_on_press"/>
<item android:state_focused="true" android:state_enabled="true"
android:drawable="@drawable/card_on_focus"/>
<item android:state_enabled="true"
android:drawable="@drawable/card_default"/>
<item android:state_enabled="false"
android:drawable="@drawable/card_on_press"/>
</selector>
注意强>: 由于CardView为所有Android版本提供了默认背景,因此Drawable默认可以作为透明项目。
答案 1 :(得分:4)
也许这个库已经更新,但是当我使用以下内容时,它在旧版本的Android上看起来很好。
您可以使用'CardView.Dark'和CardView.Light' (将使用卡支持库自动生成)
<style name="CardViewStyle.Light" parent="CardView.Light">
<item name="android:foreground">?android:attr/selectableItemBackground</item>
</style>
<style name="CardViewStyle.Dark" parent="CardView.Dark">
<item name="android:foreground">?android:attr/selectableItemBackground</item>
</style>
创建两个布局,一个用于暗,一个用于光。他们将包括这样的卡片视图:
<android.support.v7.widget.CardView
android:id="@+id/my_card_view"
style="@style/CardViewStyle.Light"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:orientation="vertical"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginBottom="8dp"
app:cardCornerRadius="2dp"
android:elevation="2dp">
... other layout stuff ...
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
android:id="@+id/my_card_view"
style="@style/CardViewStyle.Dark"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:orientation="vertical"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginBottom="8dp"
app:cardCornerRadius="2dp"
android:elevation="2dp">
... other layout stuff ...
</android.support.v7.widget.CardView>
请注意在每个CardView中切换样式。
如果您想自定义颜色而不仅仅是黑色或白色,可以使用以下内容:
要获得CardView drawable,您可以使用:
View cardView = findViewById(R.id.my_card_view);
Drawable cardViewDrawable cardView.getBackground();
convertIcon(setViewBackground(cardView, cardViewDrawable));
我的'convertIcon'就是以下内容:
/**
*
* @param drawable e.g. "getResources().getDrawable(R.drawable.my_drawable)"
* @param tint e.g. "Color.parseColor(lightTitlebarFg)"
* @return Drawable
*
*/
public static Drawable convertIcon(Drawable drawable, int tint) {
ColorFilter filter = new PorterDuffColorFilter(tint, PorterDuff.Mode.SRC_ATOP);
drawable.setColorFilter(filter);
return drawable;
}
我的'setViewBackground'就是以下内容:
@TargetApi(Build.VERSION_CODES.JELLY_BEAN)
@SuppressWarnings("deprecation")
public static void setViewBackground(View view, Drawable drawable){
if (UIUtils.isJB()) {
view.setBackground(drawable);
} else {
view.setBackgroundDrawable(drawable);
}
}
如果要以编程方式创建StateListDrawable,可以使用以下命令:
StateListDrawable states = new StateListDrawable();
states.addState(new int[] { android.R.attr.state_focused }, focusedDrawable);
states.addState(new int[] { android.R.attr.state_activated }, activatedDrawable);
states.addState(new int[] { android.R.attr.state_enabled }, defaultDrawable);
states.addState(new int[] {}, defaultDrawable);
答案 2 :(得分:3)
以下是我在card_on_press.xml文件中使用的代码,该文件存储在项目的drawable文件夹中:
<item>
<shape>
<padding
android:bottom="0dp"
android:left="0dp"
android:right="0dp"
android:top="0dp" />
<solid android:color="@color/transparent" />
</shape>
</item>
<item>
<shape>
<padding
android:bottom="0dp"
android:left="0dp"
android:right="0dp"
android:top="0dp" />
<solid android:color="@color/card_shadow_1_on_press" />
<corners android:radius="8dp" />
</shape>
</item>
<item>
<shape>
<padding
android:bottom="0dp"
android:left="0dp"
android:right="0dp"
android:top="0dp" />
<solid android:color="@color/card_shadow_2_on_press" />
<corners android:radius="8dp" />
</shape>
</item>
<!-- Background -->
<item>
<shape>
<solid android:color="@color/card_background_on_press" />
<corners android:radius="8dp" />
</shape>
</item>