私は、Activityクラスを持っている私は、静的な旗を持っている、のはAndroidの揮発性が機能していませんか?
public static volatile flag = false;
はその後、クラスで、私はフラグをチェックスレッドを起動して、別のことを行うとしましょう。
私はまた、フラグをtrueまたはfalseに設定するbroadcastreceiverも持っています。
私はvolatileですが、フラグを最新の値に強制します。しかし、私は私の放送受信機がtrueに静的フラグを設定することがわかりますが、私のスレッドはまだ偽としてそれを取得しています。
ここで基本的なものはありませんか?どんな助けもありがとう!
簡略化されたコード(更新済み) - フラグは1分後にtrueに変更されるはずです。しかしそれは決してしなかった。
package com.test;
import java.util.Calendar;
import android.app.Activity;
import android.app.AlarmManager;
import android.app.PendingIntent;
import android.content.Intent;
import android.os.Bundle;
public class TestappActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Intent intent0 = new Intent(this, TestService.class);
this.startService(intent0);
Intent intent = new Intent(this, TestReceiver.class);
AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);
PendingIntent sender = PendingIntent.getBroadcast(this,
1, intent,
PendingIntent.FLAG_UPDATE_CURRENT);
Calendar slot = Calendar.getInstance();
int min = slot.get(Calendar.MINUTE);
slot.set(Calendar.MINUTE, min+1);
am.set(AlarmManager.RTC_WAKEUP, slot.getTimeInMillis(), sender);
}
}
TestService.java:
package com.test;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.util.Log;
public class TestService extends Service {
private static final String TAG = "TestService";
public static volatile boolean flag = false;
private MyTopThread mTopThread;
public TestService() {
}
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public void onCreate() {
}
@Override
public void onDestroy() {
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
protect();
// We want this service to continue running until it is explicitly
// stopped, so return sticky.
return START_STICKY;
}
/**
* Run protection
*
*/
private void protect() {
mTopThread = new MyTopThread();
mTopThread.start();
}
private class MyTopThread extends Thread {
@Override
public void run() {
while (true) {
try {
Thread.sleep(150);
Log.d(TAG, "Flag is " + TestService.flag);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}
}
TestReceiver.java:
しかし、放送受信機からのメッセージは、それが真のTestappActivity.javaに変更されている示してい
package com.test; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.util.Log; public class TestReceiver extends BroadcastReceiver { final static private String TAG = "TestReceiver"; @Override public void onReceive(Context context, Intent intent) { Log.d(TAG, "onReceive is triggered ..."); TestService.flag = true; Log.d(TAG, "flag is changed to " + TestService.flag); } }
のAndroidManifest.xml:基本的には、このリンクから
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.test"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".TestappActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name=".TestService" />
<receiver
android:name=".TestReceiver"
android:process=":remote" >
</receiver>
</application>
</manifest>
これは機能するはずです。コードを投稿できますか? –
簡略化されたバージョンは次のようになります: – Safecoder
'flag 'の値がどこで変更されているのかわかりません。 –