I have a list of APK and it should be installed automatically.
here's my current situation.
- first APK appears, Install or Cancel
- user clicks install
- a windows appears and will ask the user to "open" or "done"
- but the problem is, after that window appears to choose "open" or "done", the next APK installation window appears and covering the "open" or "done" window of the first successful APK installed.
How do you buffer that the next APK to install shall wait till the user chooses "open" or "done" after the first installation.
currently i'm trying out these methods but to no avail :(
protected void onStart();
protected void onRestart();
protected void onResume();
protected void onPause();
protected void onStop();
protected void onDestroy();
can anyone point out the right direction? i'm still new to this.
thanks!