gpt4 book ai didi

android - 问题 :display shape android

转载 作者:行者123 更新时间:2023-11-29 20:45:52 25 4
gpt4 key购买 nike

我想在真实设备上测试我的 android 应用程序,我首先在具有 android 版本 jelly bean 4.2.2 的移动设备上进行测试,它运行良好,没有任何问题,但是当我使用另一个版本 (4.1.2) 进行测试时,出现了一个问题:我改变形状的图像的透明背景变成了黑色。

这是一个快照:

enter image description here

这是形状 xml 文件的代码:

<shape xmlns:android="http://schemas.android.com/apk/res/android" 
android:shape="oval"
android:useLevel="false" >
</shape>

按钮代码:

<ImageButton
android:id="@+id/imageButton2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:background="@drawable/round_button"
android:layout_alignParentTop="true"
android:src="@drawable/gps_locator" />

最佳答案

您还没有指定背景。似乎黑色是默认的。

通过添加纯色透明背景来更改 shape.xml 形状:

<shape xmlns:android="http://schemas.android.com/apk/res/android" 
android:shape="oval"
android:useLevel="false" >
<solid android:color="@android:color/transparent" />
</shape>

关于android - 问题 :display shape android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30376965/

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