Runnable不起作用

问题描述 投票:0回答:1

我对Runnable有问题。它不想工作,我也不知道问题出在哪里,因为它可以在我的其他应用程序中工作。有人可以帮助我吗?只是示例,有默认值“ 5”的“ healt”,对于测试,我做了一个按钮,当我单击按钮时,healt值为-1 ...,并且我想在health <5 ...时启动Runnable并加+1健康...为测试我设置了Runnable 1秒]

这里是代码:

MainActivity.java

package com.mygame.test;


import androidx.appcompat.app.AppCompatActivity;

import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.os.Handler;
import android.view.View;
import android.view.WindowManager;
import android.widget.Button;
import android.widget.TextView;


import static com.mygame.test.variables.coin;
import static com.mygame.test.variables.health;


public class Main2Activity extends AppCompatActivity {

public static final String PREFS_NAME_MAIN = "mainpref";

TextView coinText, healthText, textView;
Button button3;

private final Context app = this;
private final Handler update = new Handler();
private final Runnable updateHealth = new Runnable()
{
    public void run()
    {
        if (variables.run)
        {
            healthText.setText(""+health);


            update.postDelayed(updateHealth, 500);
        }
        else if (!variables.run) update.removeCallbacksAndMessages(null);
    }
};


@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
    setContentView(R.layout.activity_main2);

    coinText = findViewById(R.id.coinText);

    healthText = findViewById(R.id.healthText);

    healthText.setText(String.valueOf(health));

    button3 = findViewById(R.id.button3);

    textView = findViewById(R.id.textView);




    Button closeButton = findViewById(R.id.closeButton);
    closeButton.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            //finishAffinity();
            startActivity(new Intent(Main2Activity.this, ExitActivity.class));
        }
    });

    Button coinsplusButton = findViewById(R.id.coinsplusButton);
    coinsplusButton.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            //finishAffinity();
            startActivity(new Intent(Main2Activity.this, StoreActivity.class));
        }
    });


    Button level1Button = findViewById(R.id.level1Button);
    level1Button.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            //finishAffinity();
            startActivity(new Intent(Main2Activity.this, Level1Activity.class));
        }
    });


}

public void buttontest(View button3)
{
    if (health > 0) {
        health = health-1;
        healthText.setText(""+health);

    }
    variables.run = true;
    Intent activeClick = new Intent(this, ClickService.class);
    this.startService(activeClick);
    update.post(updateHealth);
    save();


}


@Override
protected void onStart()
{
    super.onStart();
    load();
    textupgrade();
    if (!variables.run)
    {
        variables.run = true;
        Intent activeClick = new Intent(this, ClickService.class);
        this.startService(activeClick);
    }
}

protected void onResume()
{
    super.onResume();
    load();
    textupgrade();
    update.post(updateHealth);

}

private void load()
{
    SharedPreferences varReader = app.getSharedPreferences(PREFS_NAME_MAIN, MODE_PRIVATE);
    variables.run = varReader.getBoolean("run", false);
    coin = varReader.getInt("coin", 0);
    health = varReader.getInt("health", 5);

}

private void save()
{
    SharedPreferences.Editor varReader = app.getSharedPreferences(PREFS_NAME_MAIN, 0).edit();
    varReader.putBoolean("run", variables.run);
    varReader.putInt("coin", coin);
    varReader.putInt("health", health);
    varReader.apply();
}

private void textupgrade(){
    coinText.setText(""+coin);
    healthText.setText(""+health);

}


}

ClickService.java

package com.mygame.test;

import android.app.IntentService;
import android.content.Intent;
import android.os.Handler;

public class ClickService extends IntentService
{
private final Handler handler = new Handler();
private final Runnable addHealth = new Runnable()
{
    public void run()
    {
        variables.health++;
        if (!variables.run) handler.removeCallbacksAndMessages(null);
        else if (variables.run) handler.postDelayed(addHealth, 1000);
    }
};
public ClickService()
{
    super("ClickService");
}
@Override
protected void onHandleIntent(Intent activeClick)
{
    handler.postDelayed(addHealth, 500);
}
}

variables.java

package com.mygame.test;

public class variables {
static int coin;
static int health;
static boolean run;


}
java android runnable
1个回答
0
投票

哦,我修复了它:D ClickService未在AndroidManifest中注册

<service
   android:name=".ClickService"
   android:exported="false" />
© www.soinside.com 2019 - 2024. All rights reserved.