Bonjour

Malgré mes recherches, je n'arrive pas à aligner mes boutons, pourriez-vous me donner une idée
Joyeux Noel à Tous

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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.simag.www.simag_sav.MainActivity">
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:orientation="vertical">
 
     <TextView
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:text="SIMAG Solutions.\nService Après Ventes"
         android:textColor="#0000FF"
         android:textSize="20dp"
         android:gravity="center"/>
      <Button
          android:layout_width="200dp"
          android:layout_height="wrap_content"
          android:text="Commandes"
          android:textSize="15dp"
          android:layout_marginTop="20dp"
          android:textColor="#0000FF"
          android:onClick="page1" />
        <Button
            android:layout_width="200dp"
            android:layout_height="wrap_content"
            android:text="Tickets à traiter"
            android:textSize="15dp"
            android:layout_marginTop="20dp"
            android:textColor="#0000FF"
            android:onClick="page2" />
        <Button
            android:layout_width="200dp"
            android:layout_height="wrap_content"
            android:text="Clients"
            android:textSize="15dp"
            android:layout_marginTop="20dp"
            android:textColor="#0000FF"
            android:onClick="page3" />
        <Button
            android:layout_width="200dp"
            android:layout_height="wrap_content"
            android:text="Stocks"
            android:textSize="15dp"
            android:layout_marginTop="20dp"
            android:textColor="#0000FF"
            android:onClick="page4" />
        <ImageButton
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:src="@drawable/bouton_search"
            android:layout_marginTop="10dp"
            android:layout_marginLeft="150dp"
            android:onClick="logo_bouton1"/>
        <ImageButton
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:src="@drawable/bouton_search"
            android:layout_marginTop="10dp"
            android:onClick="logo_bouton2"/>
        <ImageButton
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:src="@drawable/bouton_search"
            android:layout_marginTop="10dp"
            android:layout_marginRight="150dp"
            android:onClick="logo_bouton3"/>
 
    </LinearLayout>
 
</RelativeLayout>