pense-bête de bruno sanchiz

Accueil > smartphones et tablettes > Créer une application android > Créer une application android - docs

Créer une application android - docs

Publié le 17 août 2017, dernière mise-à-jour le 17 novembre 2023, 1 visites, 23644 visites totales.

  • livres
    • ANDROID : guide de développement d’applications Java pour Smartphones et Tablettes
  • programmes à installer

cd /opt/android-studio/bin/ && sh  studio.sh

utilisation d’un exemple lié au gps : speedtracker
téléchargements supplémentaires : https://dl.google.com/android/repository/platform-25_r03.zip https://dl.google.com/android/repository/build-tools_r25.0.3-linux.zip


webview permet à une application d’afficher une page web

dans AndroidManifest.xml file :
<uses-permission android:name="android.permission.INTERNET" />

ouverture de la page :

Uri uri = Uri.parse("Example Domain");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);

https://developer.android.com/guide/topics/text/autofill.html

https://javamind-fr.blogspot.fr/2012/04/serie-darticles-sur-android.html

[bruno sanchiz]