您好,登錄后才能下訂單哦!
本篇文章為大家展示了如何在Android中使用Handler與Countdowntimer實現(xiàn)一個倒計時功能,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
實現(xiàn)方法
去除actionBar
閃屏頁面一般都為全屏顯示,這里我們首先需要去除actionBar,在res/values/styles.xml中設置:
這里也建議大家在后期開發(fā)中盡量不要用死板的actionBar,可以根據(jù)項目需求使用ToolBar或者自定義TitleBar組件來替代actionBar,這樣的話界面設計會更加靈活。
2.2 layout布局
這里僅僅設置布局背景圖片,以及在右上角添加TextView用于顯示倒計時,做的有點糙,見諒,代碼如下:
<?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:id="@+id/activity_splash" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@mipmap/background_login" tools:context="com.mly.panhouye.handlerdemo.SplashActivity"> <TextView android:gravity="right" android:id="@+id/tv_time" android:textColor="@color/colorAccent" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="SS" android:textSize="30sp"/> </RelativeLayout>
2.3 java實現(xiàn)代碼
2.1中只是去除了app的ActionBar,要做的全屏顯示,仍需要在activity中使用代碼設置。
package com.mly.panhouye.handlerdemo; import android.content.Intent; import android.os.Bundle; import android.os.CountDownTimer; import android.os.Handler; import android.os.Message; import android.support.v7.app.AppCompatActivity; import android.util.Log; import android.view.Window; import android.view.WindowManager; import android.widget.TextView; public class SplashActivity extends AppCompatActivity { private MyHandler myHandler = new MyHandler(); private TextView tv_time; private MyCountDownTimer mc; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); //設置Activity為全屏 getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); //去標題狀態(tài)欄 requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.activity_splash); tv_time = (TextView) findViewById(R.id.tv_time); mc = new MyCountDownTimer(5000, 1000); mc.start(); /** * 使用handler的postDelayed延遲5秒執(zhí)行頁面跳轉 * (與CountDownTimer的millisInFuture一致) */ myHandler.postDelayed(new Runnable() { @Override public void run() { startMainActivity(); } },5000); } //將Handler聲明為靜態(tài)內部類 private static class MyHandler extends Handler { @Override public void handleMessage(Message msg) { super.handleMessage(msg); } } //頁面跳轉的方法 private void startMainActivity(){ Intent intent = new Intent(this,Main3Activity.class); startActivity(intent); finish();//完成跳轉后銷毀閃屏頁(從棧內移除) } class MyCountDownTimer extends CountDownTimer { /** * @param millisInFuture * 表示以毫秒為單位 倒計時的總數(shù) * 例如 millisInFuture=1000 表示1秒 * @param countDownInterval * 表示 間隔 多少微秒 調用一次 onTick 方法 * 例如: countDownInterval =1000 ; 表示每1000毫秒調用一次onTick() */ public MyCountDownTimer(long millisInFuture, long countDownInterval) { super(millisInFuture, countDownInterval); } public void onFinish() { tv_time.setText("正在跳轉"); } public void onTick(long millisUntilFinished) { tv_time.setText("倒計時(" + millisUntilFinished / 1000 + ")"); Log.i("tag","倒計時"+millisUntilFinished / 1000); } } @Override protected void onDestroy() { super.onDestroy(); //閃屏頁銷毀時將消息對象從消息隊列移除并結束倒計時 myHandler.removeCallbacksAndMessages(null); mc.cancel(); Log.i("tag","destory"); } }
上述內容就是如何在Android中使用Handler與Countdowntimer實現(xiàn)一個倒計時功能,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業(yè)資訊頻道。
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。