How many ways data stored in Android?
Answer Posted / mady
1.SharedPreferences 2.Internal Storage 3.External Storage 4.SQLite Database 5.Network connection
Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What phones will get android pie?
What is ischecked() method?
Please explain the difference between flag_activity_clear_task and flag_activity_clear_top?
What is the order of dialog-box in android?
How does auto sync work on android?
What is the main reason of using process lifecycle in android?
Define the application resource file in android?
What innovations the oha members strive to achieve?
Explain me difference between asynctasks & threads?
Why we use linux id in android?
How do you pass the data to sub-activities android?
What is application context in android?
Explain fragment.
How many android os are there?
Under what condition could the code sample below crash your application? How would you modify the code to avoid this potential problem? Explain your answer. Intent sendIntent = new Intent(); sendIntent.setAction(Intent.ACTION_SEND); sendIntent.putExtra(Intent.EXTRA_TEXT, textMessage); sendIntent.setType(HTTP.PLAIN_TEXT_TYPE); // "text/plain" MIME type startActivity(sendIntent);