0

サービスが実行されるたびに、MainActivity.class SharedPrefsから変数(Happiness)を変更しようとしています。私はこれを行う方法を理解できないようです。私のコードの下を見つけてください。私の結果は幸福=-1になります。これは、prefEditor.putIntが原因です。私は理解していますが、値の変更と戻りの方法がわかりません。

public class MainActivity extends Activity {

int Health = 100;
private static final int Happiness = 100;
int Hunger = 0;
int Level = 1;
EditText happiness_display,
         health_display,
         hunger_display,
         level_display;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.activity_main);

        SharedPreferences settings = getSharedPreferences("APP_PREFS",
                                                  MODE_PRIVATE);
        SharedPreferences.Editor prefEditor = settings.edit();
        prefEditor.putInt("HAPPINESS", Happiness);
        prefEditor.commit();

        WebView myWebView = (WebView) findViewById(R.id.pet_display);
        myWebView.loadUrl("file:///android_asset/renamon.gif");
        myWebView.setInitialScale(10000);


        ShowToast();

        TextView happiness = (TextView) findViewById(R.id.happiness_display);
        happiness.setText(Integer.toString(Happiness));

        Calendar cal = Calendar.getInstance();

        Intent intent = new Intent(this, chronos.class);
        PendingIntent pintent = PendingIntent.getService(this, 0, intent, 0);

        AlarmManager alarm = (AlarmManager)getSystemService(Context.ALARM_SERVICE);

        // Start every 30 seconds
        alarm.setRepeating(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(), 30*1000, pintent); 
    }


    private void ShowToast() {
        Toast.makeText(getApplicationContext(), "Toast method invoked from on create " + Happiness, Toast.LENGTH_LONG).show();
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    }

}

public class chronos extends Service {

    @Override
    public IBinder onBind(Intent arg0) {
        // TODO Auto-generated method stub
        return null;
    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        SharedPreferences settings = getSharedPreferences("APP_PREFS",
                MODE_PRIVATE);
        SharedPreferences.Editor prefEditor = settings.edit();
        prefEditor.putInt("HAPPINESS",  - 1);
        prefEditor.commit();
        Toast.makeText(getBaseContext(), "Chronos running" + settings.getInt("HAPPINESS", 0), Toast.LENGTH_LONG).show();


        return super.onStartCommand(intent, flags, startId);
    }
}

私の方法論が間違っている場合は、助けがあれば感謝するか、正しい方向に向けてください(おそらく:Pです)

おそらく私の矛盾ですが、基本的には、ゲームループのように、仮想ペットの場合と同様に、サービスが実行されるたびに、幸福、健康などの値を変更したいと考えています。

IntentServiceのサンプルコード

happiness = happiness - 1;
        SharedPreferences.Editor prefEditor = settings.edit();
        prefEditor.putInt("HAPPINESS", happiness);
        prefEditor.commit();

サービスが実行されるたびに、いくつかの変数から設定された量を減算したいだけです。

4

1 に答える 1

0

これを試して。

まず、UIスレッドをブロックするIntentService代わりにを使用します。Service

このような

public class chronos extends IntentService {

    int happiness;
    public chronos() {
        super("chronos");
        // TODO Auto-generated constructor stub
    }

    @Override
    protected void onHandleIntent(Intent intent) {
        // TODO Auto-generated method stub

        SharedPreferences settings = getSharedPreferences("APP_PREFS",
                MODE_PRIVATE);

            happiness = settings.getInt("HAPPINESS",0) - 1;

            SharedPreferences.Editor prefEditor = settings.edit();
            prefEditor.putInt("HAPPINESS",happiness);
            prefEditor.commit();

        Toast.makeText(getBaseContext(),
                "Chronos running" + settings.getInt("HAPPINESS", 0),
                Toast.LENGTH_LONG).show();

    }

}

TextViewMainActivityの値をServiceから更新する場合は、 BroadcastReceiverを使用する必要があります

于 2013-02-21T19:34:00.997 に答える