我对屏幕上的图像切换有问题。请检查图片1。屏幕边缘仍有空白。我想达到图2的效果。没有空的空间和图像切换器完全适合屏幕。我可以使用ImageView执行此efect,方法是:

android:scaleType="centerCrop"

但看起来centercrop不能与imageswitcher一起工作。
谢谢你知道怎么修。
更新:
这是我的XML代码:
我添加了android:scaletype=“fitxy”,但没有帮助。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <ImageSwitcher
        android:id="@+id/imageswitcher"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scaleType="fitXY"
        android:src="@drawable/it_intro1" >
    </ImageSwitcher>

解决方案:
最后,它帮助添加了这行代码:imageview.setscaletype(imageview.scaleType.fit-xy);
public View makeView() {

            ImageView imageView = new ImageView(Introduction.this);
             imageView.setScaleType(ImageView.ScaleType.FIT_XY);

            LayoutParams params = new ImageSwitcher.LayoutParams(
                    LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);

            imageView.setLayoutParams(params);
            return imageView;

        }

最佳答案

解决方案:最后它帮助添加了这一行代码:imageview.setscaletype(imageview.scaleType.fit-xy);

public View makeView() {

        ImageView imageView = new ImageView(Introduction.this);
         imageView.setScaleType(ImageView.ScaleType.FIT_XY);

        LayoutParams params = new ImageSwitcher.LayoutParams(
                LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);

        imageView.setLayoutParams(params);
        return imageView;

    }

09-18 01:45