我正在尝试创建一个自定义CardView
:
但是我无法执行顶部的操作...我该怎么做?
如果我创建一个LinearLayout
或RelativeLayout
然后水平放置LinearLayout
并在权重为0的情况下放置另一个LinearLayout
垂直,那么可以在cardView中进行操作3 TextViews
和重1 LinearLayout
中的ImageView
?你能指导我吗?
答案 0 :(得分:1)
请参见CardView;您可以使用:
setBackground(Drawable arg0)
setBackgroundDrawable(Drawable arg0)
setBackgroundResource(int arg0)
与具有该形状的drawable
资源一起。
答案 1 :(得分:0)
最好共享xml, 1-将图像/ XML可绘制背景设置为cardview 2-标题部分可以单独添加并叠加在cardview等上
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
<Space
android:id="@+id/space"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="58dp"
/>
<TextView
android:id="@+id/button2"
android:layout_width="180dp"
android:layout_height="60dp"
android:background="@drawable/help"
android:layout_alignParentTop="true"
android:gravity="center"
android:padding="10dp"
android:text="Title"
android:textSize="17sp"
android:layout_centerHorizontal="true"
android:textColor="@color/colorWhite"/>
<android.support.v7.widget.CardView
android:id="@+id/cardView2"
android:layout_width="match_parent"
android:layout_height="300dp"
app:cardBackgroundColor="@color/colorWhite"
app:cardCornerRadius="8dp"
android:layout_below="@id/space"
app:cardElevation="0dp">
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/NameTxt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="John Doe"
android:textColor="@color/textDark"
android:textSize="18dp"
android:textStyle="bold"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"/>
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="JohnDoe@gmail.com"
android:textColor="@color/textDark"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/textView2"/>
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="21dp"
android:text="Account Type"
android:textColor="@color/textDark"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/NameTxt"/>
</android.support.constraint.ConstraintLayout>
</android.support.v7.widget.CardView>
</RelativeLayout>