我通过代码创建一个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背景仍然为黑色,而不是我所期望的透明。我如何解决它?

最佳答案

当您在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/

10-10 08:33