0

在我的應用程序我使用的圖像視圖,我選擇寬度和高度,match_parent,和FILL_PARENT,但是圖像仍然小於我的屏幕size.What是錯此代碼。我知道它是一個愚蠢的問題,我是新來的Android我想解決這個問題,任何人都可以提供解決方案嗎?如何在不同的屏幕設置圖像視圖尺寸

我的XML

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:orientation="vertical" android:layout_width="match_parent" 
android:layout_height="match_parent"> 
<RelativeLayout 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"> 
    <ImageView 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:scaleType="fitXY" 
     android:id="@+id/imageView" /> 
<Button 
     android:id="@+id/btnAddExpense" 
     android:layout_width="wrap_content" 
     android:layout_height="45dp" 

     android:text="Skip" 
     android:layout_alignParentBottom="true" 
     android:layout_alignParentRight="true" 
     android:layout_alignParentEnd="true" /> 
</RelativeLayout> 
</LinearLayout> 

圖像視圖

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:orientation="vertical" android:layout_width="match_parent" 
android:layout_height="match_parent"> 
<RelativeLayout 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"> 
    <ImageView 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:scaleType="fitXY" 
     android:adjustViewBounds="true" 
     android:id="@+id/imageView" /> 
<Button 
     android:id="@+id/btnAddExpense" 
     android:layout_width="wrap_content" 
     android:layout_height="45dp" 

     android:text="Skip" 
     android:layout_alignParentBottom="true" 
     android:layout_alignParentRight="true" 
     android:layout_alignParentEnd="true" /> 
</RelativeLayout> 
</LinearLayout> 
+0

「ImageView」中有圖像嗎? – Josef

回答

1

缺省情況下,ImageView的控制的內容是一定規模的 - 圖象尺寸的通常大小。爲了解決您的問題,您需要將android:adjustViewBounds="true"添加到您的ImageViewandroid:scaleType="fitXY"

+0

我已經添加了它,但仍然沒有解決問題。其他更改? – jibinj

+0

看到我的編輯,請 –

+0

嗨,我有補充,機器人:adjustViewBounds =「真」,也是規模型= fitXY,但顯示沒有變化,依然問題仍然存在, – jibinj