2016-05-01 44 views
0

我閃屏應用以13秒顯示啓動畫面

/** 
* Created by HumzaYunas on 05/01/2016. 
*/ 
import android.app.Activity; 
import android.content.Intent; 
import android.graphics.PixelFormat; 
import android.os.Bundle; 
import android.view.Window; 
import android.view.animation.Animation; 
import android.view.animation.AnimationUtils; 
import android.widget.ImageView; 
import android.widget.LinearLayout; 

public class splashscreen extends Activity { 
    public void onAttachedToWindow() { 
     super.onAttachedToWindow(); 
     Window window = getWindow(); 
     window.setFormat(PixelFormat.RGBA_8888); 
    } 
    /** Called when the activity is first created. */ 
    Thread splashTread; 
    @Override 
    public void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_splashscreen); 
     StartAnimations(); 
    } 
    private void StartAnimations() { 
     Animation anim = AnimationUtils.loadAnimation(this, R.anim.alpha); 
     anim.reset(); 
     LinearLayout l=(LinearLayout) findViewById(R.id.lin_lay); 
     l.clearAnimation(); 
     l.startAnimation(anim); 

     anim = AnimationUtils.loadAnimation(this, R.anim.translate); 
     anim.reset(); 
     ImageView iv = (ImageView) findViewById(R.id.splash); 
     iv.clearAnimation(); 
     iv.startAnimation(anim); 

     splashTread = new Thread() { 
      @Override 
      public void run() { 
       try { 
        int waited = 0; 
        // Splash screen pause time 
        while (waited < 5000) { 
         sleep(100); 
         waited += 100; 
        } 
        Intent intent = new Intent(splashscreen.this, 
          MainActivity.class); 
        intent.setFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION); 
        startActivity(intent); 
        splashscreen.this.finish(); 
       } catch (InterruptedException e) { 
        // do nothing 
       } finally { 
        splashscreen.this.finish(); 
       } 

      } 
     }; 
     splashTread.start(); 

    } 

} 

,這是需要很長時間,只要我想是這樣:(......我只是好奇的是如何加載應用程序,如Facebook,當我們挖掘FB上的圖標和應用程序加載速度極快和閃屏顯示,但在我的應用我遇到了這個問題。任何幫助將不勝感激:) ..

這裏

我androidmanifest
<uses-permission android:name="android.permission.INTERNET" /> 

    <application 
     android:allowBackup="true" 
     android:icon="@mipmap/ic_launcher" 
     android:label="@string/app_name" 
     android:supportsRtl="true" 
     android:theme="@style/Theme.AppCompat.Light.NoActionBar"> 
     <activity android:name=".splashscreen" 
      android:label="@string/app_name"> 
      <intent-filter> 
       <action android:name="android.intent.action.MAIN" /> 

       <category android:name="android.intent.category.LAUNCHER" /> 
      </intent-filter> 
     </activity> 
     <activity android:name=".MainActivity"> 
     </activity> 
     <activity 
      android:name=".ShowPosts" 
      android:label="@string/posttitle" 
      android:parentActivityName=".MainActivity"/> 
     <activity android:name=".LiveScores" /> 
    </application> 

I只是做了我的閃屏作爲主要的活動,因爲我想加載我的應用程序快速使閃屏需要時間,那之後我mainactivity得到一些時間來工作和負載

回答

1

,你可以在這裏閱讀更多: Add splash in application

如果您還想創建屏幕之間的動畫,過渡看活動間:

transitions between activities

+0

其實我說的是我的應用程序開始延遲。即使顯示啓動畫面也需要很長時間。這是問題:( –

+0

我會建議你閱讀如何正確地做到這一點(在我提供的鏈接中),你也不必用postDelay(new Runnable(),delayInMillis)來使用線程 –

+0

我已經遵循了鏈接中的內容,但仍然在某種程度上與它相同,但實際上我是初學者,所以我不明白這些因素以及這些內容如何工作:) –