mirror of
https://github.com/m2049r/xmrwallet
synced 2025-04-03 19:05:31 +02:00
start WalletService as foreground service preventing it from being killed by the system
This commit is contained in:
parent
9b3086ff2e
commit
a126844272
app/src/main
@ -19,6 +19,7 @@
|
|||||||
android:name=".WalletActivity"
|
android:name=".WalletActivity"
|
||||||
android:configChanges="orientation|keyboardHidden"
|
android:configChanges="orientation|keyboardHidden"
|
||||||
android:label="@string/wallet_activity_name"
|
android:label="@string/wallet_activity_name"
|
||||||
|
android:launchMode="singleTask"
|
||||||
android:screenOrientation="portrait" />
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
|
@ -16,8 +16,13 @@
|
|||||||
|
|
||||||
package com.m2049r.xmrwallet.service;
|
package com.m2049r.xmrwallet.service;
|
||||||
|
|
||||||
|
import android.app.Notification;
|
||||||
|
import android.app.PendingIntent;
|
||||||
import android.app.Service;
|
import android.app.Service;
|
||||||
|
import android.content.Context;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
|
import android.graphics.Bitmap;
|
||||||
|
import android.graphics.BitmapFactory;
|
||||||
import android.os.Binder;
|
import android.os.Binder;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.os.Handler;
|
import android.os.Handler;
|
||||||
@ -25,9 +30,11 @@ import android.os.IBinder;
|
|||||||
import android.os.Looper;
|
import android.os.Looper;
|
||||||
import android.os.Message;
|
import android.os.Message;
|
||||||
import android.os.Process;
|
import android.os.Process;
|
||||||
|
import android.support.v4.app.NotificationCompat;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
|
|
||||||
import com.m2049r.xmrwallet.R;
|
import com.m2049r.xmrwallet.R;
|
||||||
|
import com.m2049r.xmrwallet.WalletActivity;
|
||||||
import com.m2049r.xmrwallet.model.PendingTransaction;
|
import com.m2049r.xmrwallet.model.PendingTransaction;
|
||||||
import com.m2049r.xmrwallet.model.TransactionHistory;
|
import com.m2049r.xmrwallet.model.TransactionHistory;
|
||||||
import com.m2049r.xmrwallet.model.Wallet;
|
import com.m2049r.xmrwallet.model.Wallet;
|
||||||
@ -38,6 +45,7 @@ import com.m2049r.xmrwallet.util.TxData;
|
|||||||
|
|
||||||
public class WalletService extends Service {
|
public class WalletService extends Service {
|
||||||
final static String TAG = "WalletService";
|
final static String TAG = "WalletService";
|
||||||
|
final static int NOTIFICATION_ID = 2049;
|
||||||
|
|
||||||
public static final String REQUEST_WALLET = "wallet";
|
public static final String REQUEST_WALLET = "wallet";
|
||||||
public static final String REQUEST = "request";
|
public static final String REQUEST = "request";
|
||||||
@ -432,7 +440,7 @@ public class WalletService extends Service {
|
|||||||
msg.setData(intent.getExtras());
|
msg.setData(intent.getExtras());
|
||||||
mServiceHandler.sendMessage(msg);
|
mServiceHandler.sendMessage(msg);
|
||||||
//Log.d(TAG, "onStartCommand() message sent");
|
//Log.d(TAG, "onStartCommand() message sent");
|
||||||
return START_NOT_STICKY;
|
return START_STICKY;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -454,6 +462,7 @@ public class WalletService extends Service {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void start(String walletName, String walletPassword) {
|
private void start(String walletName, String walletPassword) {
|
||||||
|
startNotfication();
|
||||||
// if there is an listener it is always started / syncing
|
// if there is an listener it is always started / syncing
|
||||||
Log.d(TAG, "start()");
|
Log.d(TAG, "start()");
|
||||||
showProgress(getString(R.string.status_wallet_loading));
|
showProgress(getString(R.string.status_wallet_loading));
|
||||||
@ -488,6 +497,7 @@ public class WalletService extends Service {
|
|||||||
Log.d(TAG, "stop() closed");
|
Log.d(TAG, "stop() closed");
|
||||||
listener = null;
|
listener = null;
|
||||||
}
|
}
|
||||||
|
stopForeground(true);
|
||||||
stopSelf();
|
stopSelf();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -532,4 +542,16 @@ public class WalletService extends Service {
|
|||||||
}
|
}
|
||||||
return wallet;
|
return wallet;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void startNotfication() {
|
||||||
|
Intent notificationIntent = new Intent(this, WalletActivity.class);
|
||||||
|
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
|
||||||
|
Notification notification = new Notification.Builder(this)
|
||||||
|
.setContentTitle(getString(R.string.service_description))
|
||||||
|
.setSmallIcon(R.drawable.ic_notification_sync_32_32)
|
||||||
|
.setContentIntent(pendingIntent)
|
||||||
|
.build();
|
||||||
|
startForeground(NOTIFICATION_ID, notification);
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user