Articles

Affichage des articles associés au libellé putExtra

Tuto Android :Utiliser une Intent pour passer d'une activité à une autre et envoyer des données via putExtra

Image
  Les deux vidéos suivantes contiennent un tutoriel détaillé qui vous permet d'apprendre à utiliser les Intent explicites et le passage de valeurs. Sinon vous pouvez suivre l'exercice qui existe en-dessous de la vidéo. Intent explicite :  Passage de valeurs en utilisant putExtra() de la classe Intent :  Dans cet exercice, nous allons voir comment passer d'une activité à une autre en envoyant des données après avoir cliqué sur le bouton. Créez un nouveau projet  et donner le nom de «Intention» à votre projet. Dans votre activity_main.xml mettez ce code: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent"  > <Button android:id="@+id/intent" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParent

Android Tutorial : Using Intent to move from one activity to another and sending data via putExtra

Image
We talked in a previous tutorial on using Buttons and how to trigger an action following a button click. This tutorial is the fulfillment of the previous tutorial: Android tutorial for beginners:using Button, Listener and Toast . In the previous tutorial we have seen how to use a button and how to add listener to the button to trigger actions.We have seen how to show a toast (a short pop up message) after clicking the button. In this tutorial we will see how to move from an activity to another after clicking the button. Create a new project in your eclipse (File ==> New ==> Android Application Poject) and give the name of 'Intention' to your project. In your activity_main.xml put this code : <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools: