實現APP進入登入介面之前的動畫效果
阿新 • • 發佈:2019-02-19
在我模仿一個APP的時候,我發現在進入登入介面之前有一個動畫,在我看了這個demo之後,我知道了如何實現,就寫下了這篇博文。
首先,需要找一張圖片來充當該動畫的背景
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height ="match_parent"
android:background="@drawable/welcome"
tools:context="me.zhujiajie.jianshu.ui.activity.WelcomeActivity">
</RelativeLayout>
然後,在程式碼中進行實現:
public class WelcomeActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super .onCreate(savedInstanceState);
setContentView(R.layout.activity_welcome);
new Handler().postDelayed(new Runnable() {//在Runnable被傳入訊息佇列之前,延遲一定的時間,在這裡傳入的是3000毫秒
@Override
public void run() {
Intent loginIntent = new Intent(WelcomeActivity.this,LoginActivity.class);
startActivity(loginIntent);
finish();
}
},3000 );
}
}