Android
Résolu/Fermé
Pepito39
Messages postés
91
Date d'inscription
mercredi 15 mai 2013
Statut
Membre
Dernière intervention
21 mars 2014
-
27 mai 2013 à 17:16
Pepito39 Messages postés 91 Date d'inscription mercredi 15 mai 2013 Statut Membre Dernière intervention 21 mars 2014 - 28 mai 2013 à 16:01
Pepito39 Messages postés 91 Date d'inscription mercredi 15 mai 2013 Statut Membre Dernière intervention 21 mars 2014 - 28 mai 2013 à 16:01
A voir également:
- Android
- Android - Guide
- Android recovery - Guide
- Jouer a pokemon sur android - Guide
- Voir mot de passe wifi android - Guide
- Mode sécurisé android - Guide
2 réponses
Pepito39
Messages postés
91
Date d'inscription
mercredi 15 mai 2013
Statut
Membre
Dernière intervention
21 mars 2014
1
28 mai 2013 à 10:20
28 mai 2013 à 10:20
Je viens de remarquer que j'avais cette erreur:
Error in an XML file: aborting build.
Comment peut-on régler ce problème?
Error in an XML file: aborting build.
Comment peut-on régler ce problème?
scinarf
Messages postés
1119
Date d'inscription
samedi 18 novembre 2006
Statut
Membre
Dernière intervention
25 septembre 2014
252
28 mai 2013 à 14:00
28 mai 2013 à 14:00
Je vais mettre en gras les erreurs !
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
andoid:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/nom_client"
android:textStyle="bold"
android:textColor="#000000"
android:gravity="center"/>
<EditText
android:id="@+id/EtNom"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Nom"
andoid:inputType="text"
android:layout_weight="1"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Prénom :"
android:textStyle="bold"
android:textColor="#000000"
android:gravity="center"/>
<EditText
android:id="@+id/EtPrenom"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Prénom"
android:inputType="text"
android:layout_weight="1"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Adresse :"
android:textStyle="bold"
android:textColor="#000000"
android:gravity="center"/>
<EditText
android:id="@+id/EtAdresse"
android:layout_width="match_parent"
android:layout_height="wrap_content"
andoid:hint="Adresse"
android:inputType="text"
android:layout_weight="1" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Code postale :"
android:textStyle="bold"
android:textColor="#000000"
android:gravity="center"/>
<EditText
android:id="@+id/EtCp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
andoid:hint="Code postale"
android:inputType="text"
android:layout_weight="1" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Ville :"
android:textStyle="bold"
android:textColor="#000000"
android:gravity="center"/>
<EditText
android:id="@+id/EtVille"
android:layout_width="match_parent"
android:layout_height="wrap_content"
andoid:hint="Ville"
android:inputType="text"
android:layout_weight="1" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Adresse mail :"
android:textStyle="bold"
android:textColor="#000000"
android:gravity="center"/>
<EditText
android:id="@+id/EtMail"
android:layout_width="match_parent"
android:layout_height="wrap_content"
andoid:hint="Mail"
android:inputType="text"
android:layout_weight="1" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Téléphone :"
android:textStyle="bold"
android:textColor="#000000"
android:gravity="center"/>
<EditText
android:id="@+id/EtTel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
andoid:hint="Tel"
android:inputType="text"
android:layout_weight="1" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Nombre de pizzas achetées :"
android:textStyle="bold"
android:textColor="#000000"
android:gravity="center"/>
<EditText
android:id="@+id/EtNbpizza"
android:layout_width="match_parent"
android:layout_height="wrap_content"
andoid:hint="Pizza achetées"
android:inputType="number"
android:layout_weight="1" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Nombre total de pizzas :"
android:textStyle="bold"
android:textColor="#000000"
android:gravity="center"/>
<EditText
android:id="@+id/EtTotalpizza"
android:layout_width="match_parent"
android:layout_height="wrap_content"
andoid:hint="Total"
android:inputType="text"
android:layout_weight="1" />
</LinearLayout>
</LinearLayout>
Une fois ces erreurs corrigées plus de problème ;)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
andoid:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/nom_client"
android:textStyle="bold"
android:textColor="#000000"
android:gravity="center"/>
<EditText
android:id="@+id/EtNom"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Nom"
andoid:inputType="text"
android:layout_weight="1"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Prénom :"
android:textStyle="bold"
android:textColor="#000000"
android:gravity="center"/>
<EditText
android:id="@+id/EtPrenom"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Prénom"
android:inputType="text"
android:layout_weight="1"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Adresse :"
android:textStyle="bold"
android:textColor="#000000"
android:gravity="center"/>
<EditText
android:id="@+id/EtAdresse"
android:layout_width="match_parent"
android:layout_height="wrap_content"
andoid:hint="Adresse"
android:inputType="text"
android:layout_weight="1" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Code postale :"
android:textStyle="bold"
android:textColor="#000000"
android:gravity="center"/>
<EditText
android:id="@+id/EtCp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
andoid:hint="Code postale"
android:inputType="text"
android:layout_weight="1" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Ville :"
android:textStyle="bold"
android:textColor="#000000"
android:gravity="center"/>
<EditText
android:id="@+id/EtVille"
android:layout_width="match_parent"
android:layout_height="wrap_content"
andoid:hint="Ville"
android:inputType="text"
android:layout_weight="1" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Adresse mail :"
android:textStyle="bold"
android:textColor="#000000"
android:gravity="center"/>
<EditText
android:id="@+id/EtMail"
android:layout_width="match_parent"
android:layout_height="wrap_content"
andoid:hint="Mail"
android:inputType="text"
android:layout_weight="1" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Téléphone :"
android:textStyle="bold"
android:textColor="#000000"
android:gravity="center"/>
<EditText
android:id="@+id/EtTel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
andoid:hint="Tel"
android:inputType="text"
android:layout_weight="1" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Nombre de pizzas achetées :"
android:textStyle="bold"
android:textColor="#000000"
android:gravity="center"/>
<EditText
android:id="@+id/EtNbpizza"
android:layout_width="match_parent"
android:layout_height="wrap_content"
andoid:hint="Pizza achetées"
android:inputType="number"
android:layout_weight="1" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Nombre total de pizzas :"
android:textStyle="bold"
android:textColor="#000000"
android:gravity="center"/>
<EditText
android:id="@+id/EtTotalpizza"
android:layout_width="match_parent"
android:layout_height="wrap_content"
andoid:hint="Total"
android:inputType="text"
android:layout_weight="1" />
</LinearLayout>
</LinearLayout>
Une fois ces erreurs corrigées plus de problème ;)
Pepito39
Messages postés
91
Date d'inscription
mercredi 15 mai 2013
Statut
Membre
Dernière intervention
21 mars 2014
1
28 mai 2013 à 14:34
28 mai 2013 à 14:34
D'accord, merci, je vais tâcher de corriger ça! :)
Pepito39
Messages postés
91
Date d'inscription
mercredi 15 mai 2013
Statut
Membre
Dernière intervention
21 mars 2014
1
28 mai 2013 à 14:41
28 mai 2013 à 14:41
Les android:hint ne sont pas nécessaire donc?
scinarf
Messages postés
1119
Date d'inscription
samedi 18 novembre 2006
Statut
Membre
Dernière intervention
25 septembre 2014
252
28 mai 2013 à 14:45
28 mai 2013 à 14:45
si mais c'est "andRoid" et pas "andoid"
Pepito39
Messages postés
91
Date d'inscription
mercredi 15 mai 2013
Statut
Membre
Dernière intervention
21 mars 2014
1
28 mai 2013 à 14:48
28 mai 2013 à 14:48
Ah oui, en effet!!! Bien vu!!
scinarf
Messages postés
1119
Date d'inscription
samedi 18 novembre 2006
Statut
Membre
Dernière intervention
25 septembre 2014
252
28 mai 2013 à 14:49
28 mai 2013 à 14:49
Pas de soucis, le android:hint est tout a fait correcte lui ;)
C'est ça de faire des copier/coller
C'est ça de faire des copier/coller
28 mai 2013 à 11:43
28 mai 2013 à 12:02
Voici le code du 2ème fichier: