gpt4 book ai didi

java - 在具有以下 api 21 的设备上运行时,CardView 不显示

转载 作者:太空宇宙 更新时间:2023-11-04 10:48:56 25 4
gpt4 key购买 nike

我需要帮助。为什么 CardView 没有显示在我的设备上。但适用于 API 22-UP。已经在我的 gradle 文件中添加了 google mawen 。并且已经在寻找可能的替代方案,但它仍然没有运行。这可能是什么原因?或者您对我遇到的问题有建议吗?预先感谢您!

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#CFD8DC"
tools:context="com.example.ninjathegreat.ligaocitysolidwastemanagementv20.MainActivity">


<LinearLayout
android:orientation="vertical"
android:weightSum="10"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<include
layout="@layout/app_bar"
android:id="@+id/app_bar"
/>


<RelativeLayout
android:id="@+id/relativeID"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="2" />

<TextView
android:id="@+id/eswm"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/eswm"
android:layout_gravity="center"
android:textSize="34sp" />

<GridLayout
android:layout_marginTop="50dp"
android:id="@+id/mainGrid"
android:layout_width="match_parent"
android:layout_height="412dp"
android:layout_weight="8"
android:alignmentMode="alignMargins"
android:columnCount="2"
android:columnOrderPreserved="false"
android:padding="14dp"
android:rowCount="3">

<!-- Row 1 -->

<!-- Column 1 -->
<android.support.v7.widget.CardView
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_columnWeight="1"
android:layout_marginBottom="16dp"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:layout_rowWeight="1"
app:cardCornerRadius="8dp"
app:cardElevation="8dp">

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal|center_vertical"
android:layout_margin="16dp"
android:orientation="vertical">


<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableTop="@drawable/gps"
android:padding="5dp"
android:text="@string/gps"
android:textAlignment="center"
android:textColor="#020202"
android:textStyle="bold" />

</LinearLayout>

</android.support.v7.widget.CardView>

<android.support.v7.widget.CardView
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_columnWeight="1"
android:layout_marginBottom="16dp"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:layout_rowWeight="1"
app:cardCornerRadius="8dp"
app:cardElevation="8dp">

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal|center_vertical"
android:layout_margin="16dp"
android:orientation="vertical">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableTop="@drawable/recycle"
android:padding="5dp"
android:text="@string/educational_guide"
android:textAlignment="center"
android:textColor="#020202"
android:textStyle="bold" />


</LinearLayout>

</android.support.v7.widget.CardView>

<android.support.v7.widget.CardView
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_columnWeight="1"
android:layout_marginBottom="16dp"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:layout_rowWeight="1"
app:cardCornerRadius="8dp"
app:cardElevation="8dp">

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal|center_vertical"
android:layout_margin="16dp"
android:orientation="vertical">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableTop="@drawable/calendar_2"
android:padding="5dp"
android:text="@string/waste_schedule"
android:textAlignment="center"
android:textColor="#020202"
android:textStyle="bold" />


</LinearLayout>

</android.support.v7.widget.CardView>

<android.support.v7.widget.CardView
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_columnWeight="1"
android:layout_marginBottom="16dp"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:layout_rowWeight="1"
app:cardCornerRadius="8dp"
app:cardElevation="8dp">

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal|center_vertical"
android:layout_margin="16dp"
android:orientation="vertical">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableTop="@drawable/info"
android:padding="5dp"
android:text="@string/information_1"
android:textAlignment="center"
android:textColor="#020202"
android:textStyle="bold" />


</LinearLayout>

</android.support.v7.widget.CardView>
</GridLayout>

</LinearLayout>
</ScrollView>

最佳答案

尝试 app:cardUseCompatPadding="true" 属性

<android.support.v7.widget.CardView
android:id="@+id/card_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:cardBackgroundColor="@color/white"
app:cardCornerRadius="5dp"
app:cardUseCompatPadding="true"
app:elevation="2dp">
</android.support.v7.widget.CardView>

关于java - 在具有以下 api 21 的设备上运行时,CardView 不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48050202/

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