IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Android Discussion :

Passer d'une interface à une autre à partir du Tabhost


Sujet :

Android

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre averti
    Femme Profil pro
    Étudiant
    Inscrit en
    Mars 2012
    Messages
    15
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : Canada

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Enseignement

    Informations forums :
    Inscription : Mars 2012
    Messages : 15
    Par défaut Passer d'une interface à une autre à partir du Tabhost
    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>

  2. #2
    Expert confirmé

    Avatar de Feanorin
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    4 589
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2004
    Messages : 4 589
    Par défaut
    Bonjour

    Je n'arrive pas à passer d'une interface à une autre en cliquant sur le tabhost en android
    voila mon code:
    Je n'arrive pas à comprendre ce que tu souhaites faire, pourrais tu nous donner un peu plus de détails .

    Par exemple quelle interface parles tu ?

    Que veux dire pour toi "cliquant sur le tabhost" ? Car là je ne suis pas sûr de comprendre parle tu la View ou d'un bouton , du menu , ..

    Merci de prendre un peu de temps pour nous expliquer tes besoins et ta demande

    Merci.

  3. #3
    Membre averti
    Femme Profil pro
    Étudiant
    Inscrit en
    Mars 2012
    Messages
    15
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : Canada

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Enseignement

    Informations forums :
    Inscription : Mars 2012
    Messages : 15
    Par défaut
    Bonjour,
    Ce que je souhaite faire est de pouvoir afficher l'interface de l'une des classes que j'ai créée, en cliquant seulement sur l'une des LinearLayout (tab1, tab2, tab3, tab4, tab5) appartenant à mon tabhost (tabHost), tout en sachant que j'ai créée 4 classes attachés à 4 fichiers main.xml.

  4. #4
    Expert confirmé

    Avatar de Feanorin
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    4 589
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2004
    Messages : 4 589
    Par défaut
    Ce que je souhaite faire est de pouvoir afficher l'interface de l'une des classes que j'ai créée, en cliquant seulement sur l'une des LinearLayout (tab1, tab2, tab3, tab4, tab5) appartenant à mon tabhost (tabHost), tout en sachant que j'ai créée 4 classes attachés à 4 fichiers main.xml.
    Normalement la TabActivity gère cela tout seul . Pourquoi mettre des LinearLayout pour gérer cela ?

    Comme dans cet exemple :
    http://developer.android.com/resourc...tabwidget.html

  5. #5
    Membre averti
    Femme Profil pro
    Étudiant
    Inscrit en
    Mars 2012
    Messages
    15
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : Canada

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Enseignement

    Informations forums :
    Inscription : Mars 2012
    Messages : 15
    Par défaut
    Bonjour,
    j'ai ajouté à mon projet une classe pour créer les onglets et un main pour définir le layout comme ce qui est indiqué sur le site:

    http://developer.android.com/resourc...tabwidget.html,
    mais malheureusement je ne vois pas apparaitre les onglets que j'ai créée dans l'interface
    Voila mon code:

    La classe onglet
    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
    package acceuil2.ma;
     
    import android.app.TabActivity;
    import android.content.Intent;
    import android.content.res.Resources;
    import android.os.Bundle;
    import android.widget.TabHost;
     
     
    public class onglet extends TabActivity {
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.mainonglet);
     
        Resources res = getResources(); // Resource object to get Drawables
        TabHost tabHost = getTabHost();  // The activity TabHost
        TabHost.TabSpec spec;  // Resusable TabSpec for each tab
        Intent intent;  // Reusable Intent for each tab
     
        // Create an Intent to launch an Activity for the tab (to be reused)
        intent = new Intent().setClass(this, Acceuil2Activity.class);
     
        // Initialize a TabSpec for each tab and add it to the TabHost
        spec = tabHost.newTabSpec("artists").setIndicator("Artists",
                          res.getDrawable(R.drawable.accueil))
                      .setContent(intent);
        tabHost.addTab(spec);
     
        // Do the same for the other tabs
        intent = new Intent().setClass(this, Ajouttraitement.class);
        spec = tabHost.newTabSpec("albums").setIndicator("Albums",
                          res.getDrawable(R.drawable.cam))
                      .setContent(intent);
        tabHost.addTab(spec);
        //
        intent = new Intent().setClass(this, Ajouttraitement.class);
        spec = tabHost.newTabSpec("songs").setIndicator("Songs",
                          res.getDrawable(R.drawable.panier))
                      .setContent(intent);
        tabHost.addTab(spec);
        //
        intent = new Intent().setClass(this, Listedestraitements.class);
        spec = tabHost.newTabSpec("songs").setIndicator("Songs",
                          res.getDrawable(R.drawable.traitement))
                      .setContent(intent);
        tabHost.addTab(spec);
        //
        intent = new Intent().setClass(this, Ajouttraitement.class);
        spec = tabHost.newTabSpec("songs").setIndicator("Songs",
                          res.getDrawable(R.drawable.pharm))
                      .setContent(intent);
        tabHost.addTab(spec);
        tabHost.setCurrentTab(2);
    }
    }
     
    mainonglet.xml:
    <?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:orientation="vertical"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:padding="5dp">
            <TabWidget
                android:id="@android:id/tabs"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content" />
            <FrameLayout
                android:id="@android:id/tabcontent"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:padding="5dp" />
        </LinearLayout>
    </TabHost>

  6. #6
    Expert confirmé

    Avatar de Feanorin
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    4 589
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2004
    Messages : 4 589
    Par défaut
    mais malheureusement je ne vois pas apparaitre les onglets que j'ai créée dans l'interface
    Le code a l'air correct.

    Tu pourrais nous montrer une image de ce que tu as et ce que tu voudrais.

    Merci

Discussions similaires

  1. Réponses: 8
    Dernier message: 04/04/2006, 17h29
  2. [C#]Comment passer un parametre d une Form à l'autre ?
    Par ToxiZz dans le forum Windows Forms
    Réponses: 9
    Dernier message: 08/02/2006, 12h28
  3. [C#] Comment passer la référence d'une fenêtre à une autre ?
    Par L`artiste dans le forum Windows Forms
    Réponses: 6
    Dernier message: 08/01/2006, 16h26
  4. Réponses: 2
    Dernier message: 04/10/2005, 20h54

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo