kotlin android CardView删除边框
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了kotlin android CardView删除边框相关的知识,希望对你有一定的参考价值。
我也想在cardView上删除边框。我尝试将elavation设置为0 dp,将app:cardPreventCornerOverlap设置为false,将app:cardUseCompatPadding设置为true,但是我无法从CardView中删除边框这是我的xml文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@android:color/transparent"
android:orientation="vertical">
<androidx.cardview.widget.CardView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/IMKAWhite"
android:layout_gravity="center"
app:cardPreventCornerOverlap="false"
app:cardUseCompatPadding="true"
android:elevation="0dp">
<RelativeLayout
android:id="@+id/card"
android:background="@color/IMKAWhite"
android:layout_width="150sp"
android:layout_height="match_parent">
<ImageView
android:layout_width="150sp"
android:layout_height="150sp"
android:id="@+id/profile_photo"
android:adjustViewBounds="true"
android:background="@color/colorPrimary"
android:layout_centerHorizontal="true" />
<TextView
android:layout_below="@+id/profile_photo"
android:id="@+id/profile_name"
android:layout_marginTop="10sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:textStyle="bold"
android:textColor="@color/background_tutorial"
android:textSize="@dimen/text_dp_25"
android:gravity="center"
android:text="Medium Text"
android:textAppearance="?android:attr/textAppearanceMedium" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/bt_edit_profile"
android:layout_below="@+id/profile_name"
android:layout_marginTop="@dimen/text_dp_25"
android:layout_centerHorizontal="true"
android:textSize="@dimen/text_dp_16"
android:padding="5sp"
android:textColor="@color/background_tutorial"
android:background="@drawable/ic_bt_edit"
android:text="@string/edit_profile"
android:gravity="center" />
</RelativeLayout>
</androidx.cardview.widget.CardView>
</LinearLayout>
我尝试做这个:
app:cardPreventCornerOverlap="false"
app:cardUseCompatPadding="true"
android:elevation="0dp"
但是偷了我有边界
答案
使用
[card_view:cardElevation="0dp"
而不是android:elevation="0dp"
在根元素中导入名称空间:
xmlns:card_view="http://schemas.android.com/apk/res-auto"
[如果您不打算使用高程并且您不希望在此布局中使用任何边框,请删除CardView
元素并将视图保留在RelativeLayout
中>
以上是关于kotlin android CardView删除边框的主要内容,如果未能解决你的问题,请参考以下文章
在ConstraintLayout中为CardView设置约束参数
xml 带有CardView项目的Kotlin RecyclerView
在 Android 上使用 Kotlin 共享 Intent 文本
在 android Kotlin 中设计弯曲的容器/CardViews