我有一张卡片,想给它添加内容。我应该如何添加图片和文本到卡片?下面是我的xml代码:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="ml.vedantk.app.god.MainActivity">
<android.support.v7.widget.CardView
android:id="@+id/card1"
android:layout_width="364dp"
android:layout_height="389dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="64dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
下面是java文件:
package ml.vedantk.app.god;
import android.support.annotation.ColorInt;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.CardView;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
CardView card1 = (CardView)findViewById(R.id.card1);
card1.setCardBackgroundColor(100);
}
}
card1.setCardBackgroundColor(100);
也没有改变背景色。那么有没有人能帮我添加一张图片呢?
7条答案
按热度按时间2g32fytz1#
无法将图像设置为卡片视图的背景图像。但您可以使用
setCardBackgroundColor(ContextCompat.getColor(this, R.color.colorPrimary))
使用背景颜色如果您想在CardView内部设置背景图像,请使用其他布局,如
LinearLayout
、RelativeLayout
或CardView内部的任何其他布局。并为该布局添加背景。这是为CardView设置背景图像的简单方法之一8wigbo562#
你可以在不损失卡角半径的情况下完成这个操作。
您必须创建一个自定义
Drawable
:最后,这是我的活动代码:
r1zhe5dt3#
我正在使用的卡背景绘制如下。
myss37ts4#
1.为了设置卡片的背景图像,我们必须添加relative或
LinearLayout
。1.在Cardview声明后添加
RelativeLayout
,这样你就可以在卡片中移动元素。3.添加下面的代码/示例如下4.其中
android:background="@drawable/background">
是我的映像名称。yqhsw0fo5#
你试过这个吗?
4smxwvx56#
我知道它的答案太晚了,但我有一个简单和聪明的方法,你做一个卡视图,然后在它的另一个视图组,然后添加backgroundTint为您的卡视图,并把不透明度为0,然后设置背景图像为您的其他布局,你只是在您的卡视图中定义。
lvmkulzt7#
尝试在线性布局中设置背景,如下所示: