gpt4 book ai didi

java - 阴影未显示在 CardView 中

转载 作者:行者123 更新时间:2023-11-30 00:53:08 24 4
gpt4 key购买 nike

我正在开发一个 android 应用程序,其中我使用 cardview 作为 GridView 的网格项。

如果我还使用 cardview 的背景图像,我在显示 cardview 的阴影时会遇到问题。

代码 fragment :

grid_item.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/card_view"
android:layout_width="@dimen/grid_item_width"
android:layout_height="@dimen/grid_item_height"
card_view:cardBackgroundColor="#80000000"
card_view:cardElevation="2dp"
card_view:cardUseCompatPadding="true">


<LinearLayout
android:id="@+id/profile_picture"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@drawable/sample_expert_prof_pic"
android:orientation="vertical">

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

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:background="#8525272a"
android:orientation="vertical">

<TextView
android:id="@+id/name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="end"
android:maxLines="1"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:text="Shankar Venkat"
android:textColor="@color/white"

android:textSize="@dimen/grid_name_size" />

<TextView
android:id="@+id/tags"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="end"
android:maxLines="1"
android:paddingBottom="2dp"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingTop="5dp"
android:text="#finance# accounts"
android:textColor="@color/white"
android:textSize="@dimen/grid_tags_size" />
</LinearLayout>

</RelativeLayout>

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

我已将 cardElevation2dp 增加到 10dp。它在 Android Studio 的设计预览中显示阴影。但在部署到真实设备时不起作用。

更新:

Grid Item截图 here

请任何人帮助我找到解决方案。

最佳答案

也许您的真实设备是 Lollipop 设备。

尝试将 card_view:cardUseCompatPadding="true"添加到您的 xml 中,阴影就会出现。

关于java - 阴影未显示在 CardView 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40603179/

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