gpt4 book ai didi

android - 无法使 Android ImageSwitcher 背景透明

转载 作者:行者123 更新时间:2023-11-29 18:20:42 24 4
gpt4 key购买 nike

我通过代码创建一个 ImageSwitcher:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:background="#FFFFFF"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Gallery
android:id="@+id/Gallery01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"></Gallery>
<ImageSwitcher
android:id="@+id/ImageSwitcher01"
android:background="@android:color/transparent"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
</ImageSwitcher>
</LinearLayout>

但是当我运行它时,这个 ImageSwitcher 背景仍然是黑色的,不像我预期的那样透明。我该如何解决?

enter image description here

最佳答案

当您在 ImageSwitcher 上设置工厂时,请确保 ViewFactory 返回透明背景:

myImageSwitcher.setFactory(new ViewFactory() {
@Override
public View makeView() {
ImageView imageView = new ImageView(getActivity());
imageView.setBackgroundColor(0x00000000); // <--- return transparent bg
imageView.setScaleType(ImageView.ScaleType.FIT_CENTER);
imageView.setLayoutParams(new ImageSwitcher.LayoutParams( ImageSwitcher.LayoutParams.FILL_PARENT, ImageSwitcher.LayoutParams.FILL_PARENT));
return imageView;
}
});

这对我来说已经解决了。

关于android - 无法使 Android ImageSwitcher 背景透明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5685590/

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