我需要帮助保存保存活动的当前视图。
我的意思是,当用户点击后退按钮然后返回时,我希望他们点击的按钮保持不变并禁用按钮。
import android.content.Intent;
import android.graphics.Color;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.View;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.widget.Button;
import android.widget.TextView;
public class Question1 extends ActionBarActivity {
Button Pluto, Jupiter, Earth, Mars, Doom;
TextView Points, Dooms;
@Override
final protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_question1);
Pluto = (Button) findViewById(R.id.btnPluto);
Jupiter = (Button) findViewById(R.id.btnJupiter);
Earth = (Button) findViewById(R.id.btnEarth);
Mars = (Button) findViewById(R.id.btnMars);
Doom = (Button) findViewById(R.id.btnDoom);
Points = (TextView) findViewById(R.id.txtPoints);
Dooms = (TextView) findViewById(R.id.txtDooms);
final Animation FadeIn = AnimationUtils.loadAnimation(this, R.anim.fadein);
final Animation FadeOut = AnimationUtils.loadAnimation(this, R.anim.fadeout);
Pluto.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent i = new Intent(getApplicationContext(), Checkpoint.class);
startActivity(i);
overridePendingTransition(R.anim.fadein, R.anim.fadeout);
Pluto.startAnimation(FadeIn);
Pluto.setEnabled(false);
Pluto.setTextColor(Color.RED);
Jupiter.startAnimation(FadeIn);
Jupiter.setEnabled(false);
Jupiter.setTextColor(Color.GREEN);
Mars.startAnimation(FadeIn);
Mars.setEnabled(false);
Mars.setTextColor(Color.RED);
Earth.startAnimation(FadeIn);
Earth.setEnabled(false);
Earth.setTextColor(Color.RED);
}
});
Jupiter.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent i = new Intent(getApplicationContext(), Checkpoint.class);
startActivity(i);
overridePendingTransition(R.anim.fadein, R.anim.fadeout);
Jupiter.setEnabled(false);
Jupiter.setTextColor(Color.GREEN);
Pluto.startAnimation(FadeIn);
Pluto.setEnabled(false);
Pluto.setTextColor(Color.RED);
Mars.startAnimation(FadeIn);
Mars.setEnabled(false);
Mars.setTextColor(Color.RED);
Earth.startAnimation(FadeIn);
Earth.setEnabled(false);
Earth.setTextColor(Color.RED);
}
});
Earth.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent i = new Intent(getApplicationContext(), Checkpoint.class);
startActivity(i);
overridePendingTransition(R.anim.fadein, R.anim.fadeout);
Pluto.startAnimation(FadeIn);
Pluto.setEnabled(false);
Pluto.setTextColor(Color.RED);
Jupiter.startAnimation(FadeIn);
Jupiter.setEnabled(false);
Jupiter.setTextColor(Color.GREEN);
Mars.startAnimation(FadeIn);
Mars.setEnabled(false);
Mars.setTextColor(Color.RED);
Earth.startAnimation(FadeIn);
Earth.setEnabled(false);
Earth.setTextColor(Color.RED);
}
});
Mars.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent i = new Intent(getApplicationContext(), Checkpoint.class);
startActivity(i);
overridePendingTransition(R.anim.fadein, R.anim.fadeout);
Pluto.startAnimation(FadeIn);
Pluto.setEnabled(false);
Pluto.setTextColor(Color.RED);
Jupiter.startAnimation(FadeIn);
Jupiter.setEnabled(false);
Jupiter.setTextColor(Color.GREEN);
Mars.startAnimation(FadeIn);
Mars.setEnabled(false);
Mars.setTextColor(Color.RED);
Earth.startAnimation(FadeIn);
Earth.setEnabled(false);
Earth.setTextColor(Color.RED);
}
});
Doom.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent i = new Intent(getApplicationContext(), Checkpoint.class);
startActivity(i);
overridePendingTransition(R.anim.fadein, R.anim.fadeout);
Pluto.startAnimation(FadeIn);
Pluto.setEnabled(false);
Pluto.setTextColor(Color.RED);
Jupiter.startAnimation(FadeIn);
Jupiter.setEnabled(false);
Jupiter.setTextColor(Color.GREEN);
Mars.startAnimation(FadeIn);
Mars.setEnabled(false);
Mars.setTextColor(Color.RED);
Earth.startAnimation(FadeIn);
Earth.setEnabled(false);
Earth.setTextColor(Color.RED);
}
});
}
}
答案 0 :(得分:0)
主要想法是拥有一些课程(让我们称之为GalacticCache
)。
它有你需要保存的字段。可以这样:
public class PlanetCache {
public int planetId;
public int earthColor;
public boolean isEarthVisible;
}
public class GalacticCache {
public List<PlanetCache> planetsState;
}
然后创建一些CacheManager
来存储此GalacticCache
(SharedPreferences
或database
)。当用户回拨按钮时 - 存储您的模型。加载活动时 - 使用CacheManager
加载模型。如果您的模型为空(应用程序是第一次启动) - 请使用默认数据填充它。根据{{1}}加载后只设置按钮设置。