gpt4 book ai didi

cardview 内的 Android-webview, Lollipop 上没有圆角

转载 作者:行者123 更新时间:2023-12-05 00:05:15 29 4
gpt4 key购买 nike

为了显示带有圆角的 webview,我将它放在 CardView 中,结果如预期的那样,带有圆角的 webview。

但是在 lollipop 上测试应用时,边角不是圆角的,只显示了一个简单的 webview。如何在 lollipop 上修复它?

更新:代码如下:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/root"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#222222"
android:clickable="true">

<androidx.cardview.widget.CardView
android:id="@+id/card_holder"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerInParent="true"
android:layout_marginLeft="25dp"
android:layout_marginTop="50dp"
android:layout_marginRight="25dp"
android:layout_marginBottom="50dp"
app:cardCornerRadius="30dp">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<androidx.cardview.widget.CardView
android:id="@+id/top_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#FFFFFF"
android:clickable="true"
app:cardElevation="10dp">

<RelativeLayout
android:id="@+id/page_address"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_alignParentTop="true"
android:layout_margin="10dp"
android:background="@drawable/round_edge">

<TextView
android:id="@+id/address_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_marginLeft="45dp"
android:layout_marginRight="45dp"
android:drawablePadding="2dp"
android:ellipsize="end"
android:lines="1"
android:textColor="#000000"
android:textSize="14dp" />

</RelativeLayout>
</androidx.cardview.widget.CardView>

<WebView
android:id="@+id/webview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/top_bar"
android:scrollbars="none" />
</RelativeLayout>
</androidx.cardview.widget.CardView>

最佳答案

在你的 app.gradle 中这样改变

compileSdkVersion 29
minSdkVersion 15
targetSdkVersion 29

同步项目

关于cardview 内的 Android-webview, Lollipop 上没有圆角,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60409204/

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