我基本上需要将计数值存储在某处,并在应用再次打开时获取。 请建议一个简单的方法 我还想在30分钟后再次点击一下,向用户添加一条消息,以便访问该应用。 我已根据您的建议更改了代码,并且其工作正常,但仅在退出并重新打开应用时才会更新值。它不会实时更新值。
public class MainActivity extends AppCompatActivity {
private InterstitialAd mInterstitialAd;
//SharedPreferences.Editor editor = getSharedPreferences("PreferencesName", MODE_PRIVATE).edit();
private Button watchButton;
SharedPreferences sharedpreferences;
public static final String MyPREFERENCES = "myprefs";
public static final String value = "key";
// int myInt = prefs.getInt("myInt", 0);
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
sharedpreferences = getSharedPreferences(MyPREFERENCES, Context.MODE_PRIVATE);
final int i = sharedpreferences.getInt(value, 0);
MobileAds.initialize(this,
"ca-app-pub-3940256099942544~3347511713");
mInterstitialAd = new InterstitialAd(this);
mInterstitialAd.setAdUnitId("ca-app-pub-02434841XXXXXXXX/XXXXXXXXXX");
// mInterstitialAd.loadAd(new AdRequest.Builder().build());
watchButton = findViewById(R.id.button_send);
watchButton.setOnClickListener(new View.OnClickListener() {
// Listen for when user presses button
public void onClick(View v) {
mInterstitialAd.loadAd(new AdRequest.Builder().build());
// If a interstitial is ready, show it
if(mInterstitialAd.isLoaded()) {
mInterstitialAd.show();
}
else
{
mInterstitialAd.loadAd(new AdRequest.Builder().build());
}
// Otherwise end this activity (go back to first activity)
}
});
mInterstitialAd.setAdListener(new AdListener() {
@Override
public void onAdClosed() {
// mInterstitialAd.loadAd(new AdRequest.Builder().build());
int count = i;
count += 1;
TextView tv_data=findViewById(R.id.disCount);
tv_data.setText(Integer.toString(count));
SharedPreferences.Editor editor = sharedpreferences.edit();
editor.putInt(value, count);
editor.apply();
//setContentView(R.layout.activity_main);
// Load the next interstitial.
}
});
}
}
答案 0 :(得分:1)
您可以使用SharedPreferences:
SharedPreferences.Editor editor = getSharedPreferences("PreferencesName", MODE_PRIVATE).edit();
editor.putInt("myInt", 12345);
editor.apply();
并在需要时进行检索:
SharedPreferences prefs = getSharedPreferences("PreferencesName", MODE_PRIVATE);
int myInt = prefs.getInt("myInt", 0); // 0 is default
答案 1 :(得分:0)
您需要将此值保存在数据库中,并在打开它时获取此值。要发送消息,请阅读官方文档中的警报管理器。
答案 2 :(得分:0)
最好的方式是SharedPreferences 这是使用它的最佳教程here
在30分钟后再次点击时向用户添加一条消息以便访问该应用
你有多种方式
倒计时30分钟Notification
后,从后台发送Timer或通过背景中的Toast而不是此