2017-01-20 19:09:10 +11:00
|
|
|
/* Copyright 2017 Andrew Dawson
|
|
|
|
*
|
|
|
|
* This file is part of Tusky.
|
|
|
|
*
|
|
|
|
* Tusky is free software: you can redistribute it and/or modify it under the terms of the GNU
|
2017-03-21 12:44:30 +11:00
|
|
|
* Lesser General Public License as published by the Free Software Foundation, either version 3 of
|
|
|
|
* the License, or (at your option) any later version.
|
2017-01-20 19:09:10 +11:00
|
|
|
*
|
|
|
|
* Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
|
2017-03-21 12:44:30 +11:00
|
|
|
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
|
|
|
|
* General Public License for more details.
|
2017-01-20 19:09:10 +11:00
|
|
|
*
|
2017-03-21 12:44:30 +11:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License along with Tusky. If
|
|
|
|
* not, see <http://www.gnu.org/licenses/>. */
|
2017-01-20 19:09:10 +11:00
|
|
|
|
2017-01-03 10:30:27 +11:00
|
|
|
package com.keylesspalace.tusky;
|
|
|
|
|
2017-03-08 09:10:41 +11:00
|
|
|
import android.app.Activity;
|
2017-01-03 10:30:27 +11:00
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.content.SharedPreferences;
|
|
|
|
import android.os.Bundle;
|
2017-03-08 09:10:41 +11:00
|
|
|
import android.os.Handler;
|
2017-01-03 10:30:27 +11:00
|
|
|
import android.support.v7.app.AppCompatActivity;
|
2017-03-13 00:07:21 +11:00
|
|
|
import android.view.Window;
|
|
|
|
import android.view.WindowManager;
|
2017-01-03 10:30:27 +11:00
|
|
|
|
2017-03-08 09:10:41 +11:00
|
|
|
public class SplashActivity extends Activity {
|
|
|
|
private static int SPLASH_TIME_OUT = 2000;
|
|
|
|
|
2017-01-03 10:30:27 +11:00
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
2017-03-13 00:07:21 +11:00
|
|
|
|
|
|
|
requestWindowFeature(Window.FEATURE_NO_TITLE);
|
|
|
|
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
|
|
|
|
|
2017-03-08 09:10:41 +11:00
|
|
|
setContentView(R.layout.activity_splash);
|
2017-03-13 04:46:45 +11:00
|
|
|
|
2017-01-03 10:30:27 +11:00
|
|
|
/* Determine whether the user is currently logged in, and if so go ahead and load the
|
|
|
|
* timeline. Otherwise, start the activity_login screen. */
|
|
|
|
SharedPreferences preferences = getSharedPreferences(
|
|
|
|
getString(R.string.preferences_file_key), Context.MODE_PRIVATE);
|
|
|
|
String domain = preferences.getString("domain", null);
|
|
|
|
String accessToken = preferences.getString("accessToken", null);
|
2017-03-08 09:10:41 +11:00
|
|
|
|
|
|
|
final Intent intent;
|
|
|
|
|
2017-01-03 10:30:27 +11:00
|
|
|
if (domain != null && accessToken != null) {
|
|
|
|
intent = new Intent(this, MainActivity.class);
|
|
|
|
} else {
|
|
|
|
intent = new Intent(this, LoginActivity.class);
|
|
|
|
}
|
2017-03-08 09:10:41 +11:00
|
|
|
|
|
|
|
new Handler().postDelayed(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
startActivity(intent);
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
}, SPLASH_TIME_OUT);
|
2017-01-03 10:30:27 +11:00
|
|
|
}
|
|
|
|
}
|