gpt4 book ai didi

Android CardView 圆角半径不适用于 Kitkat

转载 作者:行者123 更新时间:2023-11-29 23:56:58 25 4
gpt4 key购买 nike

我在 android 中使用 CardView。我正在尝试为 CardView 提供圆角半径。我能够从 XML 这样做。该代码在 Lollipop 及更高版本中以预期的方式工作,但在 Android 4.4 设备上,我没有看到正在应用的角半径。

<android.support.v7.widget.CardView
android:id="@+id/cardView"
android:layout_width="250dp"
android:layout_height="wrap_content"
card_view:cardCornerRadius="20dp"
card_view:cardBackgroundColor="@android:color/transparent"
app:cardUseCompatPadding="true"
app:cardPreventCornerOverlap="false"
card_view:cardElevation="0dp">

最佳答案

将此代码放在 4.2.2 中也适用,因此显然它适用于 Kitkat 4.4 版本。我现在已经测试过了。

<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardCornerRadius="5dp"
android:layout_margin="5dp"
android:elevation="5dp">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:text="Demo"/>
</android.support.v7.widget.CardView>

并且请不要忘记添加依赖项:-

implementation 'com.android.support:cardview-v7:27.1.1'

关于Android CardView 圆角半径不适用于 Kitkat,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50265594/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com