Comment mettre un LinearLayout dans un autre LinearLayout
bonjour,
J'ai essayé de créer un CV sous Android mais seuls les titres apparaissent. Je ne vois pas où est ma faute.
Code:
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 40 41 42 43 44 45 46 47
| <TableRow
android:id="@+id/tableRow5"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<ImageButton android:id="@+id/imagebuttonil"
android:src="@drawable/ic_launcher"
android:layout_width="50px"
android:layout_height="50px"/>
<TextView android:id="@+id/il"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:typeface="serif"
android:textColor="#000000"
android:paddingLeft="20px"
android:textStyle="bold"
android:shadowColor="#9370D8"
android:text="INFORMATIQUE ET LANGUAGE"/>
</LinearLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<EditText
android:id="@+id/Editfrmil"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="20px"
android:textColor="#000000"/>
<ImageButton android:id="@+id/imagebuttonil"
android:src="@drawable/ic_launcher"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/></LinearLayout></LinearLayout>
</TableRow> |
Pouvez vous m'aider ?
Merci d'avance