What are the type of flags to run an application in android? Monday, 2 May 2016 Android Question & Answer Short Answer FLAG_ACTIVITY_NEW_TASK FLAG_ACTIVITY_CLEAR_TOP.
What is drawable folder in android? 09:08 Android Question & Answer Short Answer A compiled visual resource that can used as a backgrounds,banners, icons,splash screen etc.
How do you find any view element into your program? 09:08 Android Question & Answer Short Answer Using with findViewById we can find view element.
What are application Widgets in android? 09:07 Android Question & Answer Short Answer App Widgets are miniature application views that can embedded in other applications (such as the Home screen) and receive periodic upda...
What folders are impotent in android project? 09:07 Android Question & Answer Short Answer AndroidManifest.xml build.xml bin/ src/ res/ assets/
How to update UI from a service in android? 09:07 Android Question & Answer Short Answer Use a dynamic broadcast receiver in the activity, and send a broadcast from the service. Once the dynamic receiver is triggered update U...
Which kernal is used in android? 09:06 Android Question & Answer Short Answer Android is customized Linux 3.6 kernel.
What is sleep mode in android? 09:06 Android Question & Answer Short Answer Sleep mode mean CPU will be sleeping and it doesn't accept any commands from android device except Radio interface layer and alarm. ...
What is fragment in android? 09:05 Android Question & Answer Short Answer Fragment is a piece of activity, if you want to do turn your application 360 degrees, you can do this by fragment.
What is singleton class in android? 09:04 Android Question & Answer Short Answer A class which can create only an object, that object can be share able to all other classes.
How do you pass the data to sub-activities android? 09:03 Android Question & Answer Short Answer Using with Bundle, we can pass the data to sub activities. Bundle bun = new Bundle(); bun.putString("EMAIL", "contact@tuto...
How to launch an activity in android? 09:02 Android Question & Answer Short Answer Using with intent, we can launch an activity. Intent intent = new Intent(this, MyTestActivity.class); startActivity(intent);
Define the application resource file in android? 08:58 Android Question & Answer Short Answer JSON,XML bitmap.etc are application resources.You can injected these files to build process and can load them from the code.
How to change application name after its deployment? 08:58 Android Question & Answer Short Answer It's not truly recommended to change application name after it's deployment, if we change, it will impact on all other internal ...
How does android track the application on process? 08:57 Android Question & Answer Short Answer Android provides a Unique ID to all applications is called as Linux ID,this ID is used to track each application.
Why can't you run java byte code on Android? 08:57 Android Question & Answer Short Answer Android uses DVM (Dalvik Virtual Machine ) rather using JVM(Java Virtual Machine), if we want, we can get access to .jar file as a libra...
How is the use of web view in Android? 08:56 Android Question & Answer Short Answer WebView is UI component that can display either remote web-pages or static HTML
How to Translate in Android? 08:56 Android Question & Answer Short Answer Android uses Google translator to translate data from one language into another language and placed as a string while development
What is a Sticky Intent in android? 08:56 Android Question & Answer Short Answer Sticky Intent is also a type of intent which allows the communication between a function and a service for example,sendStickyBroadcast() ...
What are the different storages available in android? 08:55 Android Question & Answer Short Answer Shared Preferences,Internal Storage,External Storage,SQLite Databases and Network Connection