Difference between revisions of "Android Discovery Zone"

From CDOT Wiki
Jump to: navigation, search
(Registering Twitter App - getting Consumer Key and Consumer Secret (Imtiaz Latif))
Line 56: Line 56:
 
**Android UI fundamantals develop and design by Jason Ostrander. Peachpit 2012.
 
**Android UI fundamantals develop and design by Jason Ostrander. Peachpit 2012.
 
**Android design patterns interaction design solutions for developers byGreg Nudelman. Wiely 2013.
 
**Android design patterns interaction design solutions for developers byGreg Nudelman. Wiely 2013.
 +
 +
*Android documentation is very erroneous. I wasted nearly 4 hours trying to get a search bar feature in my app working as per what is given in [http://developer.android.com/training/search/setup.html Android Documentation for Search] only to find this out:
 +
[http://stackoverflow.com/questions/11699206/cannot-get-searchview-in-actionbar-to-work Stackoverflow] <br /> -- Gideon
  
 
= Resource Types =
 
= Resource Types =

Revision as of 18:29, 2 September 2014

Android Services

  • How to check all the running services in android? [1]
  • AIDL (Android Interface Definition Language) [2]
  • NotificationListenerService [3] [4]
  • Android Push Notifications [5]
  • Android Push Notification Service (APNS) [6]
  • Android: implementing a notification service the right way [7]

Development Environment Setup for using Google Maps and Location Services

  • the Setup section in the Google Play services guide [8]

Google Maps Android API v2

  • Hands-On Tutorials
    • Google Maps Android API v2 - Tutorial (Lars Vogel 2013) [9]
    • Demo projects (Google Maps Android API v2) from Dartmouth College [10]
      • use your own Maps API keys for different apps!
    • Google Maps Android API (Google services) [11]
    • A simple example using Google Maps Android API v2 [12]
  • Exploration with Google Maps Android API v2
    • Google Maps Android API v2 (Google Developers) [13]
    • Getting Started [14]
    • Google Maps Android API v2 and v1 - different operations [15]
    • Google Maps Android API v1 - DEPRECATED (Google Developers) [16]
      • used in the textbook (2012) and many other books
    • Problems
      • Testing Problems with an Emulator [17][18]
        • the emulator from GenyMotion? [19]
        • a video demo on GenyMotion's emulator [20]
      • The Problem of Getting Map Keys for Google Maps Android API v1 [21]

Location Awareness

  • Making Your App Location-Aware [22]
    • Location Services API (Google Play services)

XMLPullParser

  • Working with XML on Android (IBM DeveloperWorks) [23]
  • Vogels' Tutorial [24]
  • Android Developers [25]

Android UI Design

  • Android UI Design
    • Design Principles (e.g. Simplify My Life) [26]
    • Peter Liu's favorite: Navigation in Android (video) [27]
      • stack-based! (John Selmys)
    • Best Practices for User Experience & UI [28]
  • Android UI: Menus vs Action Bar
    • the choice [29]
    • "Say Goodbye to the Menu Button" (Android Developers Blog - 26 January 2012) [30]
  • ebooks on Android UI Design at Seneca Library
    • Smashing Android UI responsive user interfaces and design patterns for Android phones and tablets by Juhani Lehtimäki. Wiley 2013.
    • Android UI fundamantals develop and design by Jason Ostrander. Peachpit 2012.
    • Android design patterns interaction design solutions for developers byGreg Nudelman. Wiely 2013.
  • Android documentation is very erroneous. I wasted nearly 4 hours trying to get a search bar feature in my app working as per what is given in Android Documentation for Search only to find this out:

Stackoverflow
-- Gideon

Resource Types

  • application resources provided in the /res directory [31]

Decompiling Android

  • Decompiling Android by Godfrey Nolan (2012). -- ebook at Seneca Library
    • Dalvik bytecode (DEX files)

Installing and Debugging Android Apps into a Kobo Vox from Eclipse in a Ubuntu/Unix Environment (Dennis Villasenor)

turn on your device. In settings go to application. From applications go to development and enable USB debugging.

plug in your device to the usb in your computer/laptop

log in as sudo and create a file called 51-android.rules in your etc/udev/rules.d in the root folder.

sudo -i

enter your password

cd ../..

cd etc/udev/rules.d

gedit 51-android.rules


in that file you enter the following

SUBSYSTEM=="usb", ATTR{idVendor}=="2237", MODE="0666", GROUP="plugdev"

ATTR{idVendor} is passed the vendor code for your device and varies depending on the type of android device you are using. (in this case vendor 2237 is the vendor ID for the Kobo Vox)

A list of vendor ID's can be found here:

http://developer.android.com/tools/device.html

exit and save the file

now type in adb devices. Your device should now be listed

activate eclipse and select your application

right click on it, select run as android application. As long as your device runs the minimum SDK version listed in your apps manifest file (ie: <uses-sdk android:minSdkVersion="10" />) then your device should be on the list of devices where you can run and debug your app. Most devices can run a SDKVersion 8 though for some of the later labs you might need SDKVersion 10.

Parsing XML Attributes (Dennis Villasenor)

This section shows how to parse xml attributes using xmlpullparser like in the example below

       <stop tag="473" title="Humber Loop At The Queensway" lat="43.6310799" lon="-79.47871" stopId="13692"/>

The first step will be to create a class that contains the attributes you wish to retrieve more than one attribute from the xml tag.

the next step will be to create an arraylist of either that class you just created or an arraylist of Strings (or any other type but Strings is recommended).

ie: ArrayList<Stop> stopArray = new ArrayList<Stop>();

do the xml pull parsing like here

    http://developer.android.com/reference/org/xmlpull/v1/XmlPullParser.html

at the start tag section check for the tag whose attributes you wish to retrieve by calling xmlpullparser's getName method to get the current xml tag it is on and using string compare with a string containing the tag you wish to compare it to and use the getAttributeValue method as seen below to retrive the value of xml tag's attribute you wish to retrieve.


   else if(eventType == XmlPullParser.START_TAG) {
   if("stop".equals(parser.getName())){
   if(parser.getAttributeValue(null, "stopId") != null){
   String myTag = parser.getAttributeValue(null, "tag");

after this is done, add your String (or object) into your array. Be sure to do this while inside the the while(eventType != XmlPullParser.END_DOCUMENT) loop

   stopArray.add(myTag);}

Once all this is done you can now work with the values of the xml attributes by just going through the arraylist.

Registering Twitter App - getting Consumer Key and Consumer Secret (Imtiaz Latif)

In order to access Twitter API, you must create Consumer Key and Consumer Secret. Why do you need these key? because Twitter and many other organizations have added an open standard token based framework called OAuth http://oauth.net/about/ for authentication and authorization purpose.

Steps for getting Consumer Key and Consumer Secret.

Step 1: Navigate to https://dev.twitter.com/apps/new and enter you Twitter user name and password.

Signin.jpg

Step 2: Once you login, you need to register your application

Details.jpg

Step 3: After you register your App, click on settings tab and change the access type to read, write access.

Permission.jpg

Step 4: Copy the Consumer Key and Consumer Access

Keys.jpg

Please note: you also need to download Twitter4J.jar files and place it in your project's libs folder. you can further read their official documentation to determine which file you needed for your project here http://twitter4j.org/en/code-examples.html.

Twitter4j.jpg