gpt4 book ai didi

Android 透明属性不适用于 Android 4.1.1

转载 作者:太空狗 更新时间:2023-10-29 15:41:17 30 4
gpt4 key购买 nike

我正在尝试制作透明的 ButtonseditText,我正在使用自定义 xml 文件,它按预期在 Android 5 上工作(所有字段确实是透明的) ,但是当使用 Android 4.1.1 在模拟器上运行相同的应用程序时,这些字段显示为黑色。

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"
android:background="@android:color/transparent">
<stroke android:width="3px" android:color="#FFF" />
</shape>

如何在较旧的 android 操作系统上实现透明效果?

最佳答案

将背景设置为透明适用于 api 级别 4.0,在您的 xml 中添加以下行

 android:background="@android:color/transparent"

或者尝试这样的事情

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@android:color/transparent" />
<stroke android:width="3px" android:color="#FFF" />
</shape>

关于Android 透明属性不适用于 Android 4.1.1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28877931/

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