Categorized | ANDROID

android training – introduction to android

Below is the architecture of android.

Android System Architecture

EasyFreeAds Blog News Facebook Twitter Myspace Friendfeed Technorati del.icio.us Digg Google Yahoo Buzz StumbleUpon

7 Responses to “android training – introduction to android”

  1. satheesh says:

    Hi ,
    Try one of these .

    1. Clean the project, delete that project from the work space, and
    import that project again to the workspace.

    or

    2. Try creating your project in default workspace, instead of new work space.

  2. murali m says:

    Hi

    Palle Technologies Is One of Best Training Institute for Android Training.I’m one of past Android Student in this Institute. I got Goot Training from This Institute..

    This is My Android Blog: http://murali-androiddeveloper.blogspot.com/

  3. nancy says:

    Hi sir, i have a ques related to threads, if there are 2 threads t1 and t2, t1 should print 1 to 10 and t2 should print 10 to 1.

  4. Thread t1 = new Thread(){
    run()
    {
    for(int i=1; i< =10; i++)
    System.out.println(i);
    }
    }
    ----------------------------
    Thread t2 = new Thread(){
    run()
    {
    for(int i=10; i>0; i–)
    System.out.println(i);
    }
    }
    —————————-

    t1.start();
    t2.start();

  5. lakshmi says:

    sir why we use apkbuilder ,if already dex tool exist?

  6. DX tools responsibility is to only convert .class files (your source code) into .dex, which is the only format our Dalvik VM understand.

    APK builder will take .dex (java source code) + any non-java libs (c libs) + your zipped resources — then –> it will align them properly and zip it so that your complete application will be in a single bundled file .. You cant compare .apk with .dex as Dex deals with only your java source code where as APK zips every thing.
    Subscribe to the best android training institutes in bangalore

  7. Goutam says:

    About JSON parsing ,we should write inside activity or some service because everytime its return null value only on button onclick
    When user press button it stop working for some time and then after some
    moment null pointer exception or unknown exception will arise.
    JSON data display in listview with custom adapter.

Trackbacks/Pingbacks


Leave a Reply