У меня есть действие, которое называется wipeScreen.java
. Это действие запускает wipeService.java для стирания SMS и контактов на мобильном телефоне Android.когда работает wipeService, моя активность wipeScreen застревает и не может быть использована, она показывает только черный экран и даже дает мне некоторое «принудительное закрытие» для длительного времени ожидания.
кто-нибудь знает, как создатьслужба, которая может работать самостоятельно и не мешать работе, поэтому ее можно использовать во время ее работы ??
вот мой триггерный код wipescreen:
SPWipe = getSharedPreferences("wipe", 0);
editorSPWipe = SPWipe.edit();
editorSPWipe.putString("wipe", "yes");
editorSPWipe.commit();
intent myIntent = new Intent(ListenSMSservice.this,WipeScreenForm.class);
myIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
getApplication().startActivity(myIntent);
вот мойкод wipeScreen:
SPtempWipe = getSharedPreferences("wipe", 0);
if (SPtempWipe.getString("wipe","").equalsIgnoreCase("yes"))
{
startService(new Intent(LockScreenForm.this, WipeService.class));
SPWipe = getSharedPreferences("wipe", 0);
editorSPWipe = SPWipe.edit();
editorSPWipe.putString("wipe", "no");
editorSPWipe.commit();
}
и вот мой код wipeService:
@Override
public void onStart(Intent intent, int startid) {
Toast.makeText(this, "My Service Started", Toast.LENGTH_LONG).show();
wipeSMS();
wipeContact();
stopService(new Intent(this, WipeService.class));
}
public void wipeSMS()
{
Uri uri = Uri.parse("content://sms");
ContentResolver contentResolver = getContentResolver();
Cursor cursor = contentResolver.query(uri, null, null, null,
null);
while (cursor.moveToNext()) {
try {
long thread_id = cursor.getLong(1);
Uri thread = Uri.parse("content://sms/conversations/"
+ thread_id);
getContentResolver().delete(thread, null, null);
} catch (Exception e) {
// TODO: handle exception
}
}
}
public void wipeContact() {
// TODO Auto-generated method stub
ContentResolver cr = getContentResolver();
Cursor cur = cr.query(ContactsContract.Contacts.CONTENT_URI,
null, null, null, null);
while (cur.moveToNext()) {
try{
String lookupKey = cur.getString(cur.getColumnIndex(ContactsContract.Contacts.LOOKUP_KEY));
Uri uri = Uri.withAppendedPath(ContactsContract.Contacts.CONTENT_LOOKUP_URI, lookupKey);
System.out.println("The uri is " + uri.toString());
cr.delete(uri, null, null);
}
catch(Exception e)
{
//System.out.println(e.getStackTrace());
}
}
}
когда служба начала удалять мой контакт, действие wipeScreen застряло и не может быть использовано .. пожалуйстапомогите, чтобы этот сервис был запущен, не нарушая активность wipeScreen .. спасибо ..