Android:imageSwitcher适合屏幕

时间:2014-02-03 00:34:01

标签: android screen imageswitcher

我遇到了imageswitcher适合屏幕的问题。请检查PIC 1.屏幕边缘仍有白色可用空间。我希望在PIC 2中实现效果。没有空的空间和imageswitcher完美适合屏幕。我可以使用:

使用imageView做这个效果
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>

enter image description here

解: 最后它帮助添加了这行代码: 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;

        }

2 个答案:

答案 0 :(得分:7)

解决方案:最后它帮助添加了这行代码: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;

    }

答案 1 :(得分:0)

在imageswitcher的xml中,设置:

 android:layout_width="match_parent"
 android:scaleType="fitXY"