gpt4 book ai didi

android - Android Lollipop 上的海拔不工作

转载 作者:IT老高 更新时间:2023-10-28 22:03:52 24 4
gpt4 key购买 nike

我正在尝试在最新的 Android Lollipop 预览版中使用海拔属性。我将 targetSdk 设置为 21,将主题设置为 Material。接下来,我向 TextView 添加了一个背景形状并将高度设置为 8dp,但 TextView 没有显示任何阴影迹象。那是在运行 Lollipop 预览的 Nexus7 上。还有什么需要考虑的吗?

这是布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/rect"
android:text="hallo world"
android:padding="8dp"
android:elevation="8dp" />

</LinearLayout>

这是背景可绘制对象:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#7d0073ff" />
<corners android:radius="16dp" />
</shape>

这是 TextView :

Android elevation

最佳答案

由于某种原因,如果您设置带透明度的纯色,则不会显示高程阴影。

在您的示例中,我将 #7d0073ff 更改为 #0073ff 并得到了阴影。

这可能是一个错误,就像他们的 documentation它给出了一个使用半透明背景颜色的类似示例。

关于android - Android Lollipop 上的海拔不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26572048/

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