作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试扩展卡片 View 以设置背景图像。我知道这不能用普通的 cardview 来完成。我在网上搜索并找到了很多为卡片 View 设置背景颜色的解决方案,但没有为图像设置背景颜色。
我的代码:
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 填充代码时出现此异常
android.graphics.drawable.BitmapDrawable cannot be cast to android.support.v7.widget.RoundRectDrawableWithShadow
有什么解决办法吗?
最佳答案
由于 CardView 扩展了 FrameLayout,您可以在其之上分层布局。为了解决您遇到的问题,我会尝试在 View 中的所有其他元素“下方”添加一个空白 View ,然后将该 View 设置为继承其父级的状态。像这样:
<?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>
关于android - BitmapDrawable 无法转换为 RoundRectDrawableWithShadow,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29148641/
我正在尝试扩展卡片 View 以设置背景图像。我知道这不能用普通的 cardview 来完成。我在网上搜索并找到了很多为卡片 View 设置背景颜色的解决方案,但没有为图像设置背景颜色。 我的代码:
我遇到的问题基本上是在这个 answer 中发现的。但我仍然会在下面解释。我正在使用 android 5.0.1 和另一台使用 4.2.2 的设备上进行测试。在我的 5.0.1 设备上,我没有收到任何
我尝试在我的应用程序中使用 CardView,它在我的 xml 布局中运行良好。由于我想在我的代码中而不是通过 xml 生成它们,因此我尝试按照 Android 开发人员 (https://devel
我是一名优秀的程序员,十分优秀!