Bonjour,

J'ai une bordure noire sur ma ListView qui apparait automatiquement. J'aimerais la supprimer. Voici mon XML :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">	
 
 
 
 <!-- BARRE DU HAUT -->
 <LinearLayout
    android:orientation="horizontal"
    android:layout_width="wrap_content"
    android:layout_gravity="left"
    android:paddingTop="5dp"
    android:paddingBottom="5dp"
    android:layout_height="50dp"
    android:background="@drawable/bloc_haut">
 
  <ImageView
      android:src="@drawable/touch_menu"
      android:layout_width="40dp"
      android:layout_height="40dp"/>    
 
  </LinearLayout>
 
 
 
    <ListView
	 	android:id="@id/android:list"
	    android:layout_width="fill_parent"
	    android:layout_height="wrap_content"/>
 
    <TextView
        android:id="@id/android:empty"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="No data"/>
 
</LinearLayout>