BitmapDrawable不能转换为RoundRectDrawableWithShadow [英] BitmapDrawable cannot be cast to RoundRectDrawableWithShadow

查看:203
本文介绍了BitmapDrawable不能转换为RoundRectDrawableWithShadow的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想扩展cardview设置背景图片。我知道,这不能用正常cardview完成。我搜索网,发现很多解决方案的背景色设置为卡片视图但没有图像。

I am trying to extend a cardview to set the background image. I know that this can not be done with normal cardview. I have searched net and found plenty of solutions for setting a background color to the card view but none for image.

我的code这样做的:

My code to do so:

public class CCView extends CardView {

    public  CCView (Context context) {
        super(context);
        init();
    }

    public CCView (Context context, AttributeSet attrs) {
        super(context, attrs);
        init();
    }

    public CCView (Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        init();
    }


    private void init() {

       setBackground(getResources().getDrawable(R.drawable.cc_background));

    }
}

当我填充从XML code,我得到这个例外

I get this exception when I populate the code from XML

android.graphics.drawable.BitmapDrawable cannot be cast to android.support.v7.widget.RoundRectDrawableWithShadow

任何解决办法?

Any solution?

推荐答案

由于CardView延伸的FrameLayout您可以叠加在它上面的布局。为了解决您遇到的问题,我想尝试在视图中添加一个空视图下的所有其他元素,然后设置以继承其父的状态。事情是这样的:

As CardView extends FrameLayout you can layer layouts on top of it. To get around the problem you're having, I'd try adding a blank view "underneath" all the other elements in your view, and then set that view to inherit the state of its parent. Something like this:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_height="match_parent"
android:layout_width="match_parent"
card_view:cardBackgroundColor="#DDFFFFFF"
card_view:cardElevation="@dimen/card_elevation">

    <View
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:duplicateParentState="true"
        android:background="@drawable/card_background"/>

    <LinearLayout
    ....
    ....
    ....
    /LinearLayout>

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

这篇关于BitmapDrawable不能转换为RoundRectDrawableWithShadow的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆