Отображение заставки только один раз по выбору пользователя
Я хочу создать мероприятие, в котором у меня есть кнопка с заголовком "Больше не показывать экран в будущем", при нажатии которой заставка пропускается, независимо от того, сколько раз пользователь открывает приложение.
Я пытался использовать общие настройки Android (см. Ответ на другие вопросы), но я не получаю желаемого результата. Я дал ниже код, который я использовал. Пожалуйста, дайте мне знать, каким образом код должен быть исправлен. Если есть какие-либо другие средства, я с удовольствием узнаю это. Заранее спасибо.
private class MyThread extends Thread
{
public boolean bRun = true;
@Override
public void run()
{
try
{
sleep(10000);
if (bRun)
{
startActivity(new Intent(getApplicationContext(), PnbActivity.class));
}
}
catch (InterruptedException e)
{
e.printStackTrace();
}
}
}
public class Preference {
private SharedPreferences sharedPreferences;
private SharedPreferences.Editor editor;
public Preference(Context context) {
sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context);
}
public void writePreference(String key, Object value) {
if(value instanceof Boolean) {
editor = sharedPreferences.edit();
editor.putBoolean(key, (Boolean) value);
editor.commit();
}
}
public Object readPreference(String key , Object defValue) {
if(defValue instanceof Boolean)
return sharedPreferences.getBoolean(key, (Boolean) defValue);
else
return null;
}
public Boolean getDisableSplash() {
return (Boolean) readPreference("disable", false);
}
public void disableSplash(Boolean value) {
Object valve = null;
writePreference("disable", valve);
}
}
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_note);
Preference preference = new Preference(Note.this);
Boolean result = preference.getDisableSplash();
if(!result) {
// dissable you splash activity here and move to next one
}
thread = new MyThread();
thread.start();}}
public void skipAct(View v){
Preference preference = new Preference(Note.this);
preference.disableSplash(true);
Intent i = new Intent(Note.this, PnbActivity.class);
startActivity(i);
}
2 ответа
Нет необходимости создавать поток, просто перед запуском вашего заставки в активности заставки проверьте значение общего префикса как
public class Splash extends Activity {
/** Duration of wait **/
private final int SPLASH_DISPLAY_LENGTH = 3000;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.splashscreen);
Button button = (Button) findViewById(R.id.button1);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View view) {
SharedPreferences.Editor editor = getSharedPreferences(MY_PREFS_NAME, MODE_PRIVATE).edit();
editor.putString("status", "clicked");
editor.commit();
}
});
SharedPreferences prefs = getSharedPreferences(MY_PREFS_NAME, MODE_PRIVATE);
String name = prefs.getString("status", "NotClicked");
if(name.equals("clicked"){
/* Create an Intent that will start the Menu-Activity. */
Intent mainIntent = new Intent(Splash.this,pnbActivity.class);
Splash.this.startActivity(mainIntent);
Splash.this.finish();
}
/* New Handler to start the Menu-Activity
* and close this Splash-Screen after some seconds.*/
new Handler().postDelayed(new Runnable(){
@Override
public void run() {
/* Create an Intent that will start the Menu-Activity. */
Intent mainIntent = new Intent(Splash.this,pnbActivity.class);
Splash.this.startActivity(mainIntent);
Splash.this.finish();
}
}, SPLASH_DISPLAY_LENGTH);
}
}
Попробуйте изменить свой код, как показано ниже:
...
if(!result) {
thread = new MyThread();
thread.start();}}
Preference preference = new Preference(Note.this);
preference.disableSplash(true);
Intent i = new Intent(Note.this, PnbActivity.class);
startActivity(i);
}
else
//else if(result)
{
Intent i = new Intent(Note.this, PnbActivity.class);
startActivity(i);
}
...
Также проверьте, как сделать загрузочный экран один раз?
ПРИМЕЧАНИЕ: - Очистить preference
во время закрытия пользовательской сессии, чтобы снова получить SplshScreen. надеюсь, что это работает.