/* This file is part of the Diaspora Native WebApp. Diaspora Native WebApp is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Diaspora Native WebApp is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the Diaspora Native WebApp. If not, see . */ package com.github.dfa.diaspora_android.activity; import android.content.Intent; import android.content.res.TypedArray; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.WindowManager; import android.widget.ImageView; import com.github.dfa.diaspora_android.App; import com.github.dfa.diaspora_android.R; import java.util.Timer; import java.util.TimerTask; public class SplashActivity extends AppCompatActivity { private App app; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); setContentView(R.layout.activity_splash); app = (App) getApplication(); ImageView imgSplash = (ImageView) findViewById(R.id.imgSplash); TypedArray images = getResources().obtainTypedArray(R.array.splash_images); int choice = (int) (Math.random() * images.length()); imgSplash.setImageResource(images.getResourceId(choice, R.drawable.splashscreen1)); images.recycle(); Timer timer = new Timer(); timer.schedule(new TimerTask() { @Override public void run() { Intent i; if (!app.getSettings().getPodDomain().equals("")) { i = new Intent(SplashActivity.this, MainActivity.class); } else { i = new Intent(SplashActivity.this, PodsActivity.class); } startActivity(i); finish(); } }, 2000); } }