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..
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
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.
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.
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/
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.
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();
sir why we use apkbuilder ,if already dex tool exist?
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
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.