My linearLayout backgroud is losing is patch 9 effet after the imageView is load from a dynamic Url
the only way to fix the problem is to use holder.imgView.setScaleType(ImageView.ScaleType.FIT_XY); but i don't want to stretch the image at the same time
<LinearLayout
android:id="@+id/llPatch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/testt1"
android:orientation="vertical" >
<ImageView
android:id="@+id/imageRecette"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="0dp"
android:padding="0dp"
android:src="@drawable/tartare" />
</LinearLayout>