3

我在使用 imageswitcher 时遇到了问题,无法适应屏幕。请检查图 1。屏幕边缘仍有空白区域。我想实现PIC 2中的效果。没有空白,图像切换器完美贴合屏幕。我可以使用 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>

在此处输入图像描述

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

        }
4

2 回答 2

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;

    }
于 2014-02-03T13:14:23.190 回答
0

在 imageswitcher 的 xml 中,设置:

 android:layout_width="match_parent"
 android:scaleType="fitXY"
于 2014-02-03T05:00:00.500 回答