1

我将图像视图设置为全屏,但它不起作用:左侧和右侧之间有一些空间。怎么设置imageview全屏?

这是我的 XML 代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
    <ImageView android:id="@+id/imageView"  
            android:layout_width="fill_parent"  
            android:layout_height="fill_parent">  
   </ImageView>  
</LinearLayout>
4

2 回答 2

4

android:scaleType="fitXY"在您的 xml 中使用 :

<ImageView android:id="@+id/imageView"  
       android:layout_width="match_parent"  
       android:layout_height="match_parent"  
       android:scaleType="fitXY"
/>  
于 2013-03-09T07:50:16.113 回答
0

尝试以下选项之一

android:scaleType="CENTER_CROP" 

均匀缩放图像(保持图像的纵横比),使图像的两个尺寸(宽度和高度)都等于或大于视图的相应尺寸(减去填充)。

android:scaleType="CENTER_INSIDE"

均匀缩放图像(保持图像的纵横比),使图像的两个尺寸(宽度和高度)都等于或小于视图的相应尺寸(减去填充)。

android:scaleType="fitXY"

独立缩放 X 和 Y,以便 src 与 dst 完全匹配。

如果你不在乎比例

ImageView imageView=new ImageView(context);
imageView.setAdjustViewBounds(false);
于 2013-03-09T08:00:35.487 回答