web-dev-qa-db-fra.com

Affichage de l'image sans emballage

J'ai un habillage ImageView cette image :

<ImageView
    Android:layout_height="wrap_content"
    Android:layout_width="wrap_content"
    Android:scaleType="fitStart"
    Android:src="@drawable/oncmap"/>

et juste en dessous, un TextView. Malheureusement, il la pousse vers le bas ou hors de la vue en fonction de la taille de l'écran de l'appareil.

http://i.imgur.com/CuVFK5P.png

http://i.imgur.com/6wzMebV.jpg

Je peux le "pirater", mais je préfère ne pas ...

<LinearLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
xmlns:tools="http://schemas.Android.com/tools"
Android:layout_width="fill_parent"
Android:layout_height="fill_parent"
Android:padding="16dp"
Android:orientation="vertical"
tools:context="MapFragment">

<ImageView
    Android:layout_height="wrap_content"
    Android:layout_width="wrap_content"
    Android:src="@drawable/oncmap"/>

<TextView
    Android:layout_height="wrap_content"
    Android:layout_width="fill_parent"
    Android:text="Neptune"
    style="@style/sectionHeader"/>

<TextView
    Android:layout_height="wrap_content"
    Android:layout_width="fill_parent"
    Android:paddingLeft="8dp"
    Android:paddingRight="8dp"
    Android:paddingTop="16dp"
    Android:text="@string/info"
    style="@style/text"/>
58
Tyler Sebastian

Ajoutez les champs suivants à ImageView:

Android:scaleType="fitXY"
Android:adjustViewBounds="true"
197
sachin10