Differences between revisions 6 and 16 (spanning 10 versions)
Revision 6 as of 2014-12-01 03:22:38
Size: 454
Editor: scot
Comment:
Revision 16 as of 2018-06-25 16:13:42
Size: 1289
Editor: scot
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= ManagingAndProgrammingMobileApplications =
= Managing And Programming Mobile Applications =
Line 6: Line 5:
Chapter 10:
Line 7: Line 7:
Chapter 10:
 
* [[http://developer.android.com/guide/topics/ui/dialogs.html|Dialog Guide]] gives hints for both 10.2 and 10.3.
 * [[http://developer.android.com/guide/topics/ui/dialogs.html|Dialog Guide]] gives hints for both 10.2 and 10.3.
Line 11: Line 10:
Line 13: Line 13:
   * [[attachment:CBDiary.7z]]/[[attachment:CBDiary.zip]] A simple diary application that uses SQLite.

Getting files to and from your physical device:

 * First use the adb commandline tool to backup your package
 * Copy the backup (usually backup.ab) to a linux box.
 * Decompress the file using python: {{{dd if=backup.ab bs=1 skip=24 | python -c "import zlib,sys;sys.stdout.write(zlib.decompress(sys.stdin.read()))" > backup.tar}}}
 * OR Decompress the file using opnessl: {{{dd if=mybackup.ab bs=24 skip=1|openssl zlib -d > mybackup.tar}}}

== Final Project ==
 * [[attachment:Database Layer.pdf]]
 * [[http://developer.android.com/guide/topics/ui/menus.html#context-menu|Long Click pattern for ListView]]

= Managing and Programming Mobile Applications 2016 =
A.k.a. Xamarin Programming

See [[/Xamarin]] notes.

Managing And Programming Mobile Applications

A.k.a Android Programming (Fall 2014)

Chapter 10:

SQLite and Loaders:

Getting files to and from your physical device:

  • First use the adb commandline tool to backup your package
  • Copy the backup (usually backup.ab) to a linux box.
  • Decompress the file using python: dd if=backup.ab bs=1 skip=24 | python -c "import zlib,sys;sys.stdout.write(zlib.decompress(sys.stdin.read()))" > backup.tar

  • OR Decompress the file using opnessl: dd if=mybackup.ab bs=24 skip=1|openssl zlib -d > mybackup.tar

Final Project

Managing and Programming Mobile Applications 2016

A.k.a. Xamarin Programming

See /Xamarin notes.

ManagingAndProgrammingMobileApplications (last edited 2018-06-25 16:13:42 by scot)