Jackernel Posted April 19, 2011 Share Posted April 19, 2011 Bonjour, Je suis débutant en matière de développement d'android, ma question est, comment faire des onglets verticaux ? Pourrais je avoir un example de fichier XML qui contient environ deux onglets verticaux ? Je vous met mon code XML qui contient deux onglets horizontaux. merci ! <?xml version="1.0" encoding="utf-8"?> <TabHost xmlns:android="http://schemas.android.com/apk/res/android" android:id="@android:id/tabhost" android:layout_width="fill_parent" android:layout_height="fill_parent"> <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:padding="5dp" android:orientation="vertical"> <TabWidget android:id="@android:id/tabs" android:layout_height="wrap_content" android:layout_width="fill_parent"/> <FrameLayout android:id="@android:id/tabcontent" android:layout_width="fill_parent" android:layout_height="fill_parent"> </FrameLayout> </LinearLayout> </TabHost> Link to comment Share on other sites More sharing options...
Jackernel Posted May 9, 2011 Author Share Posted May 9, 2011 Personne peut m'aider ? Link to comment Share on other sites More sharing options...
Mc Flurry Posted May 9, 2011 Share Posted May 9, 2011 Et si tu change l'attribut de ton linearlayout android:orientation="vertical" en android:orientation="horizontal" ? Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.