Je voudrais créer la même bordure de ce LinearLayout que l'exemple:
Dans cet exemple, nous pouvons voir que la bordure n'est pas la même tout autour du linearLayout. Comment puis-je créer cela à l'aide d'un fichier XML dessinable?
Pour l'instant, je n'ai pu créer qu'une simple bordure tout autour du LinearLayout comme ceci:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<corners
android:radius="1dp"
android:topRightRadius="0dp"
android:bottomRightRadius="0dp"
android:bottomLeftRadius="0dp" />
<stroke
android:width="1dp"
android:color="#E3E3E1" />
<solid android:color="@color/blanc" />
</shape>
background
propriété pour cela ... créer un fichier XML avec une forme comme un rectangle, une couleur et un effet d'ombre et le définir comme arrière-plan pour votre mise en page linéaire ..