tags:

views:

1222

answers:

1

Hi,

i have added image in android, but its fitting to middle of the screen, what can i do to set it for full screen?

what is wrap_content and fill parent i'm not getting how to do plz help.

this is my code

android:scaleType="fitCenter" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/my_image" android:cropToPadding="false"/>

Thanks in advance.

A: 

Look for scaleType

<ImageView android:scaleType="fitCenter" />
WarrenFaith
I have tried the same still getting same
savitha
Take a look here: http://developer.android.com/intl/de/reference/android/widget/ImageView.ScaleType.htmlMaybe you need android:scaleType="fitXY"Try everything mentioned in the reference and you should be able to find what you need
WarrenFaith