Articles

Affichage des articles associés au libellé Toast

Tutoriel Android :utilisation des boutons et des Toasts

Image
Dans ce tutoriel nous allons voir comment afficher un Toast (un message court) juste après le click sur le bouton. Créer un nouveau projet Android comme décrit dans le tutoriel précédent  . Nous allons commencer par éditer le fichier "activity_main.xml" situé dans le dossier « res/layout ». Effacer le contenu de ce fichier et mettez ce code la : <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <Button android:id="@+id/buttonToast" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Click here !" /> </LinearLayout> Nous avons supprimé le code existant qui contient un TextView et nous avons mis un code qui contient un Button. Le bouto

Advanced use of Intents: Android StartActivityForResult Example

Image
In the previous tutorial   Android Tutorial : Using Intent to move from one activity to another and sending data via putExtra   , we saw the use of intent to move from one activity to another, today we will see how to  receive a result from the  second  activity.  The intent was instructed to call the second activity and through the startActivity method to display it.  Imagine that our secondary activit y has a result to return to the first activity.  Our objective is to   start a second activity that returns result “data” to first activity. At first c reate a new Android Application. File  >>  New  >>  Android Application Enter Project name:  StartActivity Keep other default selections, go  Next   until you reach  Finish In your layout folder you must have two Layouts XML files. The first XML file "activity_main.xml" must contain a Button and the second XML file "second_activity.xml" must contain an EditText and a Button. res/