中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用Android制作一個歡迎界面

發布時間:2020-11-21 16:18:30 來源:億速云 閱讀:380 作者:Leah 欄目:移動開發

使用Android制作一個歡迎界面?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

閃屏:在打開App時,展示,持續數秒后,自動關閉,進入另外的一個界面,SplashActivity跳轉到MainActivity

Android中有三種實現方法

xml代碼:

<&#63;xml version="1.0" encoding="utf-8"&#63;>
<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"
  tools:context="com.example.administrator.test.SplashActivity">
  <ImageView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/splash_iv"
    android:scaleType="fitXY"
    android:src="@mipmap/splash"/>

</RelativeLayout>

(1)利用Handler對象的postDelayed方法可以實現,傳遞一個Runnable對象和一個需要延時的時間即可

 new Handler().postDelayed(new Runnable() {
      @Override
      public void run() {
        Intent intent=new Intent(SplashActivity.this,MainActivity.class);
        startActivity(intent);
        SplashActivity.this.finish();
      }
    },3000);

(2)使用動畫持續時間,動畫結束后進行跳轉

@Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_splash);
    iv =(ImageView)findViewById(R.id.splash_iv);
    iv.setImageResource(R.mipmap.splash);
    //設置透明度動畫從無到有
    AlphaAnimation alphaAnimation=new AlphaAnimation(0.0f,1.0f);
    //設置動畫持續時間
    alphaAnimation.setDuration(3000);
    //開始顯示動畫
    iv.startAnimation(alphaAnimation);
    //給動畫設置監聽,在動畫結束的時候進行跳轉
    alphaAnimation.setAnimationListener(new Animation.AnimationListener() {
      @Override
      public void onAnimationStart(Animation animation) {
        //動畫開始時執行
        Log.e("TAG", "onAnimationStart: " );
      }

      @Override
      public void onAnimationEnd(Animation animation) {
        //動畫結束時執行
        Log.e("TAG", "onAnimationEnd: " );
        Intent intent=new Intent(SplashActivity.this,MainActivity.class);
        startActivity(intent);
        finish();
      }

      @Override
      public void onAnimationRepeat(Animation animation) {
        //動畫重復播放時執行
        Log.e("TAG", "onAnimationRepeat: " );
      }
    });
  }

(3)利用Timer定時器實現,

 @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_splash);
    iv =(ImageView)findViewById(R.id.splash_iv);
    iv.setImageResource(R.mipmap.splash);
    Timer timer=new Timer();
    timer.schedule(new TimerTask() {
      @Override
      public void run() {
        Intent intent=new Intent(SplashActivity.this,MainActivity.class);
        startActivity(intent);
        finish();
      }
    },3000);
  }

關于使用Android制作一個歡迎界面問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

长葛市| 新田县| 通化县| 大石桥市| 东莞市| 大同市| 彭州市| 张掖市| 绥化市| 三门县| 鄢陵县| 枣阳市| 新宁县| 罗山县| 启东市| 龙井市| 五河县| 湾仔区| 道孚县| 沙坪坝区| 井冈山市| 五峰| 虞城县| 沁水县| 玛多县| 志丹县| 南靖县| 镇安县| 石家庄市| 华容县| 凤山市| 方山县| 宣城市| 宜都市| 桃源县| 会泽县| 八宿县| 岫岩| 凤庆县| 榕江县| 礼泉县|