summaryrefslogtreecommitdiffstats
path: root/src/com/android/packageinstaller/UninstallAppProgress.java
diff options
context:
space:
mode:
authorSuchi Amalapurapu <asuchitra@google.com>2009-07-28 17:41:25 -0700
committerSuchi Amalapurapu <asuchitra@google.com>2009-07-29 15:18:35 -0700
commit7672c9941137c4664f5a2c64eb15a335b3c4789d (patch)
treeb0da9f59371751fbab92bed2243997c636cd0c9d /src/com/android/packageinstaller/UninstallAppProgress.java
parent47552303ffa5eb6422d59626c519277d6c51e031 (diff)
downloadandroid_packages_apps_PackageInstaller-7672c9941137c4664f5a2c64eb15a335b3c4789d.tar.gz
android_packages_apps_PackageInstaller-7672c9941137c4664f5a2c64eb15a335b3c4789d.tar.bz2
android_packages_apps_PackageInstaller-7672c9941137c4664f5a2c64eb15a335b3c4789d.zip
remove uninstall status screen and present the status of uninstallation in previous screen
rename xml file change code flow in activities Ignore back button when installation is in progress
Diffstat (limited to 'src/com/android/packageinstaller/UninstallAppProgress.java')
-rwxr-xr-xsrc/com/android/packageinstaller/UninstallAppProgress.java59
1 files changed, 50 insertions, 9 deletions
diff --git a/src/com/android/packageinstaller/UninstallAppProgress.java b/src/com/android/packageinstaller/UninstallAppProgress.java
index 6be099db..50a5aecb 100755
--- a/src/com/android/packageinstaller/UninstallAppProgress.java
+++ b/src/com/android/packageinstaller/UninstallAppProgress.java
@@ -23,8 +23,12 @@ import android.content.pm.IPackageDeleteObserver;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
+import android.util.Log;
+import android.view.KeyEvent;
+import android.view.View;
import android.view.Window;
-import android.view.ViewDebug;
+import android.view.View.OnClickListener;
+import android.widget.Button;
import android.widget.ProgressBar;
import android.widget.TextView;
@@ -35,10 +39,14 @@ import android.widget.TextView;
* by an intent with the intent's class name explicitly set to UninstallAppProgress and expects
* the application object of the application to uninstall.
*/
-public class UninstallAppProgress extends Activity {
+public class UninstallAppProgress extends Activity implements OnClickListener {
private final String TAG="UninstallAppProgress";
private boolean localLOGV = false;
private ApplicationInfo mAppInfo;
+ private TextView mStatusTextView;
+ private Button mOkButton;
+ private ProgressBar mProgressBar;
+ private volatile int mResultCode = -1;
private final int UNINSTALL_COMPLETE = 1;
public final static int SUCCEEDED=1;
public final static int FAILED=0;
@@ -46,8 +54,16 @@ public class UninstallAppProgress extends Activity {
public void handleMessage(Message msg) {
switch (msg.what) {
case UNINSTALL_COMPLETE:
- //finish the activity posting result
- setResultAndFinish(msg.arg1);
+ mResultCode = msg.arg1;
+ // Update the status text
+ if (msg.arg1 == SUCCEEDED) {
+ mStatusTextView.setText(R.string.uninstall_done);
+ } else {
+ mStatusTextView.setText(R.string.uninstall_failed);
+ }
+ mProgressBar.setVisibility(View.GONE);
+ // Show the ok button
+ mOkButton.setVisibility(View.VISIBLE);
break;
default:
break;
@@ -78,14 +94,39 @@ public class UninstallAppProgress extends Activity {
public void initView() {
requestWindowFeature(Window.FEATURE_NO_TITLE);
- setContentView(R.layout.op_progress);
+ setContentView(R.layout.uninstall_progress);
// Initialize views
PackageUtil.initSnippetForInstalledApp(this, mAppInfo, R.id.app_snippet);
- TextView installTextView = (TextView)findViewById(R.id.center_text);
- installTextView.setText(R.string.uninstalling);
- final ProgressBar progressBar = (ProgressBar) findViewById(R.id.progress_bar);
- progressBar.setIndeterminate(true);
+ mStatusTextView = (TextView)findViewById(R.id.center_text);
+ mStatusTextView.setText(R.string.uninstalling);
+ mProgressBar = (ProgressBar) findViewById(R.id.progress_bar);
+ mProgressBar.setIndeterminate(true);
+ // Hide button till progress is being displayed
+ mOkButton = (Button)findViewById(R.id.ok_button);
+ mOkButton.setOnClickListener(this);
+ mOkButton.setVisibility(View.GONE);
PackageDeleteObserver observer = new PackageDeleteObserver();
getPackageManager().deletePackage(mAppInfo.packageName, observer, 0);
}
+
+ public void onClick(View v) {
+ if(v == mOkButton) {
+ Log.i(TAG, "Finished uninstalling pkg: " + mAppInfo.packageName);
+ setResultAndFinish(mResultCode);
+ }
+ }
+
+ @Override
+ public boolean dispatchKeyEvent(KeyEvent ev) {
+ if (ev.getKeyCode() == KeyEvent.KEYCODE_BACK) {
+ if (mResultCode == -1) {
+ // Ignore back key when installation is in progress
+ return true;
+ } else {
+ // If installation is done, just set the result code
+ setResult(mResultCode);
+ }
+ }
+ return super.dispatchKeyEvent(ev);
+ }
}