web-dev-qa-db-fra.com

Android fond de forme

Est-il possible de dessiner une forme en xml et d'utiliser un png comme arrière-plan de cette forme? J'ai déjà la forme (c'est un carré aux coins arrondis), et je voudrais mettre un fond à ce carré.

48
Dorin Rusu

Oui, vous pouvez utiliser n'importe quel fichier de forme comme arrière-plan pour n'importe quelle vue. Cet exemple crée un arrière-plan arrondi avec une couleur blanche et une bordure noire autour de la forme.

Échantillon :

round_corner.xml

<shape xmlns:Android="http://schemas.Android.com/apk/res/Android"
    Android:shape="rectangle" >

    <corners
        Android:bottomLeftRadius="10dp"
        Android:bottomRightRadius="10dp"
        Android:topLeftRadius="10dp"
        Android:topRightRadius="10dp" />

    <stroke
        Android:width="0.5dp"
        Android:color="@color/color_grey" />

    <solid Android:color="@color/color_white" />

</shape>

vous pouvez l'utiliser comme,

<LinearLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
    Android:layout_width="fill_parent"
    Android:layout_height="fill_parent"
    Android:layout_gravity="center_horizontal"
    Android:background="@drawable/rounded_corner"
    Android:orientation="vertical" >
85
Drup Desai

// essayez de cette façon, cela vous aidera

  <LinearLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
        Android:layout_width="wrap_content"
        Android:layout_height="wrap_content"
        Android:background="@drawable/rounded_corner"
        Android:padding="2dp"
        Android:orientation="vertical" >
<ImageView 
     Android:layout_width="wrap_content"
     Android:layout_height="wrap_content" 
    Android:background="@drawable/yourdrawable />
</LinearLayout>
1
Padma Kumar