AsyncTask In Android
onPreExecute(), invoked on the UI thread before the task is executed.
AsyncTask In Android
How to store images of an activity into android phone gallery?
REST vs SOAP
SOAP stands for Simple Object Access Protocol. REST stands for REpresentational State Transfer.
Pass ArrayList From OneActivity to AnotherActivity
public class DataWrapper implements Serializable
{ private ArrayList<String> arrayList; public DataWrapper(ArrayList<String> data) { this.arrayList = data; } public ArrayList<String> getArrayList() { return this.arrayList; } } Intent intent = new Intent(SubCat1Activity.this,Full1Activity.class); intent.putExtra("data",new DataWrapper(MainData)); startActivity(intent); DataWrapper dw = (DataWrapper) getIntent().getSerializableExtra("data"); ArrayList<String> list = dw.getArrayList();
What is the difference between menus and dialogs, in android ?
What is the difference between this context and getapplicationcontext ?