我自定义了一些卡片视图,如下所示:
public class CustomCard extends CardView {
public CustomCard(Context context) {
this(context, null);
}
public CustomCard(Context context, AttributeSet attributeSet) {
this(context, attributeSet, 0);
}
public CustomCard(Context context, AttributeSet attributeSet, int defStyle) {
super(context, attributeSet, defStyle);
//R.layout.card_custom is the custom xml file
inflate(context, R.layout.card_custom, this);
}
}
然后,我将它们构造并添加到ViewGroup中,如下所示:
CustomCard card = new CustomCard(this);
someLayout.addView(card);
问题是我将在UI中看到两层CardView边框,如下所示(很明显在边框处有两层高程):
有人有主意吗?谢谢
编辑:
自定义CardView的一个xml:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="14dp"
android:layout_marginBottom="14dp">
<!--- Some Details --->
</RelativeLayout>
</android.support.v7.widget.CardView>
我上面提到的一些布局:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/background_gray">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<!--- Details --->
</LinearLayout>
</ScrollView>
最佳答案
看来您是在自定义名片视图内夸大CardView
,这是导致此问题的原因。
要解决此问题,请将您的layout/custom_card.xml
更改为以RelativeLayout
作为父级,而不是CardView
关于java - 自定义CardView边框显示两次,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29768623/