Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> Android 實現閃屏頁和右上角的倒計時跳轉,android跳轉

Android 實現閃屏頁和右上角的倒計時跳轉,android跳轉

編輯:關於android開發

Android 實現閃屏頁和右上角的倒計時跳轉,android跳轉


效果圖:

閃屏頁用到了handler和CountDownTimer類,還需配置一下Activity的主題,這裡是:android:theme="@android:style/Theme.NoTitleBar.Fullscreen" 全屏主題的意思。

實現源碼:

package com.example.shanping;

import java.lang.ref.WeakReference;

import com.example.shanping.MyActivity.MyCountDownTimer;

import android.os.Bundle;
import android.os.CountDownTimer;
import android.os.Handler;
import android.os.Message;
import android.app.Activity;
import android.content.Intent;
import android.util.Log;
import android.view.Menu;
import android.widget.TextView;

public class MainActivity extends Activity {

    private MyCountDownTimer mc; 
    private TextView tv;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        tv = (TextView) findViewById(R.id.textView1); 
        mc = new MyCountDownTimer(3000, 1000); 
        mc.start();
        handler.postDelayed(new Runnable() {
            
            @Override
            public void run() {
                Intent intent=new Intent(MainActivity.this,MyActivity.class);
                startActivity(intent);
            }
        }, 3000);
    }
    private Handler handler=new Handler();
    /** 
       * 繼承 CountDownTimer 防范 
       * 
       * 重寫 父類的方法 onTick() 、 onFinish() 
       */
      
      class MyCountDownTimer extends CountDownTimer { 
        /** 
         * 
         * @param millisInFuture 
         *      表示以毫秒為單位 倒計時的總數 
         * 
         *      例如 millisInFuture=1000 表示1秒 
         * 
         * @param countDownInterval 
         *      表示 間隔 多少微秒 調用一次 onTick 方法 
         * 
         *      例如: countDownInterval =1000 ; 表示每1000毫秒調用一次onTick() 
         * 
         */
        public MyCountDownTimer(long millisInFuture, long countDownInterval) { 
          super(millisInFuture, countDownInterval); 
        } 
      
        public void onFinish() { 
          tv.setText("正在跳轉"); 
        } 
      
        public void onTick(long millisUntilFinished) { 
          tv.setText("倒計時(" + millisUntilFinished / 1000 + ")"); 
        } 

      }
    
}

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved