Salut,
Je n'arrive pas à passer d'une interface à une autre en cliquant sur le tabhost en android
voila mon code:
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229 La classe package acceuil2.ma; import android.app.Activity; import android.content.Intent; import android.graphics.Color; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.TabHost; import android.widget.TabHost.OnTabChangeListener; import android.widget.TabHost.TabSpec; public class Listedestraitements extends Activity implements OnTabChangeListener { TabHost view; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.mainlistedestraitements); //changer le titre de la page setTitle("LISTE DES TRAITEMENTS"); //changer la couleur du texte du titre //this.setTitleColor(Color.BLUE); //changer la couleur du fond d'écran du titre View title = getWindow().findViewById(android.R.id.title); View titleBar = (View) title.getParent(); titleBar.setBackgroundColor(Color.GREEN); //le bouton ajouter OnClickListener ButtonConnexion = new OnClickListener() { @Override public void onClick(View actuelView) { Intent intent = new Intent(Listedestraitements.this, Ajouttraitement.class); startActivity(intent); } }; Button bouton = (Button) findViewById(R.id.ajouter1); bouton.setOnClickListener(ButtonConnexion); //le bouton consulter OnClickListener ButtonConnexion1 = new OnClickListener() { @Override public void onClick(View actuelView) { Intent intent = new Intent(Listedestraitements.this, Recherchedestraitements.class); startActivity(intent); } }; Button bouton1 = (Button) findViewById(R.id.consulter1); bouton1.setOnClickListener(ButtonConnexion1); //le bouton modifier OnClickListener ButtonConnexion2 = new OnClickListener() { @Override public void onClick(View actuelView) { Intent intent = new Intent(Listedestraitements.this, Recherchedestraitements.class); startActivity(intent); } }; Button bouton2 = (Button) findViewById(R.id.modifier1); bouton2.setOnClickListener(ButtonConnexion2); TabHost tabHost=(TabHost)findViewById(R.id.tabHost); tabHost.setup(); TabSpec spec1=tabHost.newTabSpec("Tab1"); spec1.setContent(R.id.tab1); spec1.setIndicator("",getResources().getDrawable(R.drawable.accueil)); TabSpec spec2=tabHost.newTabSpec("Tab2"); spec2.setContent(R.id.tab2); spec2.setIndicator("",getResources().getDrawable(R.drawable.cam)); TabSpec spec3=tabHost.newTabSpec("Tab 3"); spec3.setContent(R.id.tab3); spec3.setIndicator("",getResources().getDrawable(R.drawable.panier)); TabSpec spec4=tabHost.newTabSpec("Tab 4"); spec4.setContent(R.id.tab4); spec4.setIndicator("",getResources().getDrawable(R.drawable.pharm)); TabSpec spec5=tabHost.newTabSpec("Tab 5"); spec5.setContent(R.id.tab5); spec5.setIndicator("",getResources().getDrawable(R.drawable.traitement)); tabHost.addTab(spec1); tabHost.addTab(spec2); tabHost.addTab(spec3); tabHost.addTab(spec4); tabHost.addTab(spec5); } @Override public void onTabChanged(String arg0) { // TODO Auto-generated method stub } } main.xml: <?xml version="1.0" encoding="utf-8"?> <TabHost android:layout_width="fill_parent" android:layout_height="fill_parent" android:id="@+id/tabHost" xmlns:android="http://schemas.android.com/apk/res/android" android:background="#ffffff" > <FrameLayout android:id="@android:id/tabcontent" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_alignParentBottom="true" > <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/tab1" android:orientation="vertical" android:paddingBottom="5dp" > </LinearLayout> <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:id="@+id/tab2" android:orientation="vertical" android:paddingBottom="5dp" > </LinearLayout> <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:id="@+id/tab3" android:orientation="vertical" android:paddingBottom="5dp" > </LinearLayout> <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:id="@+id/tab4" android:orientation="vertical" android:paddingBottom="5dp" > </LinearLayout> <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:id="@+id/tab5" android:orientation="vertical" android:paddingBottom="5dp" > </LinearLayout> <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="bottom" > <EditText android:id="@+id/editText1" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" android:ems="10" > <requestFocus /> </EditText> <Button android:id="@+id/consulter1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_alignParentLeft="true" android:layout_marginBottom="113dp" android:text="Consulter" android:textStyle="bold" /> <Button android:id="@+id/ajouter1" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_alignTop="@+id/consulter1" android:layout_marginTop="54dp" android:text="Ajouter" android:textStyle="bold" /> <Button android:id="@+id/modifier1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignBaseline="@+id/consulter1" android:layout_alignBottom="@+id/consulter1" android:layout_alignParentRight="true" android:text="Modifier" android:textStyle="bold" /> <TabWidget android:id="@android:id/tabs" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true" /> </RelativeLayout> </FrameLayout> </TabHost>
Partager