Android 는 클릭 하여 인증번호 카운트다운 효 과 를 가 져 옵 니 다.

우 리 는 개발 에 있어 서 카운트다운 기능 을 자주 사용 합 니 다.예 를 들 어 인증 코드 를 보 낸 후에 카운트다운 60s 를 한 다음 에 인증 코드 를 얻 습 니 다.나중에 사용 하기에 편리 하도록 기록 을 하고 카운트다운 의 실현 을 이야기 합 니 다. 
1,우선 초읽기 도구 류 의 패키지 진행 

public class CountDownTimerUtils extends CountDownTimer {
 private TextView mTextView;
 
 /** 
  * @param textView   The TextView 
  * 
  * 
  * @param millisInFuture The number of millis in the future from the call 
  *       to {@link #start()} until the countdown is done and {@link #onFinish()} 
  *       is called. 
  * @param countDownInterval The interval along the way to receiver 
  *       {@link #onTick(long)} callbacks. 
  */ 
 public CountDownTimerUtils(TextView textView, long millisInFuture, long countDownInterval) { 
  super(millisInFuture, countDownInterval); 
  this.mTextView = textView; 
 }

 /**
  *         
  * @param millisUntilFinished
  */
 @Override 
 public void onTick(long millisUntilFinished) { 
  mTextView.setClickable(false); //       
  mTextView.setText(millisUntilFinished / 1000 + " "); //       
  mTextView.setBackgroundResource(R.drawable.shape_verify_btn_press); //       ,        
 
  SpannableString spannableString = new SpannableString(mTextView.getText().toString()); //        
  ForegroundColorSpan span = new ForegroundColorSpan(Color.RED);
  /** 
   * public void setSpan(Object what, int start, int end, int flags) { 
   *    start end,start     ,     ,    。 
   *  0     。end     ,       ,      ,        。 
   */ 
  spannableString.setSpan(span, 0, 2, Spannable.SPAN_INCLUSIVE_EXCLUSIVE);//            
  mTextView.setText(spannableString); 
 }

 /**
  *         
  */
 @Override 
 public void onFinish() { 
  mTextView.setText("       "); 
  mTextView.setClickable(true);//       
  mTextView.setBackgroundResource(R.drawable.shape_verify_btn_normal); //     
 } 
} 

이 도구 류 를 Countdown Timer 에 계승 시 킨 다음 카운트다운 을 표시 하 는 View 를 전송 합 니 다.카운트다운 기간 에 onTick 방법 을 사용 합 니 다.이 방법 에서 View 의 카운트다운 인터페이스 를 새로 고침 하고 카운트다운 이 끝 난 후에 onFinish 방법 을 사용 하여 안에서 View 의 상 태 를 회복 하면 됩 니 다. 
2.레이아웃 파일 
인증 코드 를 가 져 오 려 면 클릭 하지 않 은 view 레이아웃 shapeverify_btn_normal.xml

 <?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
 android:shape="rectangle" >

 <!--      :         -->
 <solid android:color="@color/maincolor" />
 <!--       :          -->
 <stroke
  android:width="1dp"
  android:color="@color/white" />
 <!--             -->
 <!-- android:radius       -->
 <corners android:radius="5dip" />

 <!-- padding:Button      Button      -->
 <padding
  android:bottom="5dp"
  android:left="5dp"
  android:right="5dp"
  android:top="5dp" />
</shape>

인증 코드 를 가 져 온 view 레이아웃 을 누 르 십시오.  shape_verify_btn_press.xml 

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
 android:shape="rectangle" >

 <!--      :         -->
 <solid android:color="@color/graywhite" />
 <!--       :          -->
 <stroke
  android:width="1dp"
  android:color="@color/white" />
 <!--             -->
 <!-- android:radius       -->
 <corners android:radius="5dip" />

 <!-- padding:Button      Button      -->
 <padding
  android:bottom="5dp"
  android:left="5dp"
  android:right="5dp"
  android:top="5dp" />
</shape>

전체 인터페이스의 레이아웃 

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="vertical"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:background="@drawable/login_bg">

 <EditText
  android:id="@+id/rst_phone_number"
  android:layout_width="match_parent"
  android:layout_height="40dp"
  android:inputType="phone"
  android:hint="@string/phone_number"
  android:textSize="16sp"
  android:textColor="@color/black"
  android:singleLine="true"
  android:background="@drawable/shape_form"
  android:textCursorDrawable="@drawable/text_cursor"
  android:layout_marginLeft="30dp"
  android:layout_marginRight="30dp"
  android:layout_marginTop="30dp"
  android:layout_gravity="center_vertical"/>

 <LinearLayout
  android:layout_width="match_parent"
  android:layout_height="40dp"
  android:layout_marginLeft="30dp"
  android:layout_marginRight="30dp"
  android:layout_marginTop="15dp"
  android:orientation="horizontal">

  <EditText
   android:id="@+id/rst_verify_code"
   android:layout_width="wrap_content"
   android:layout_height="match_parent"
   android:layout_weight="1"
   android:inputType="number"
   android:hint="@string/rst_verify_code"
   android:textSize="16sp"
   android:textColor="@color/black"
   android:singleLine="true"
   android:background="@drawable/shape_form"
   android:textCursorDrawable="@drawable/text_cursor" />

  <TextView
   android:id="@+id/rst_send_code"
   android:layout_width="130dp"
   android:layout_height="match_parent"
   android:text="@string/rst_send_code"
   android:textSize="13sp"
   android:textColor="@color/white"
   android:gravity="center"
   android:layout_marginLeft="10dp"
   android:background="@drawable/shape_verify_btn_normal"/>

 </LinearLayout>

 <Button
  android:id="@+id/rst_next_step"
  android:layout_width="match_parent"
  android:layout_height="40dp"
  android:layout_margin="30dp"
  android:text="@string/rst_next_step"
  android:textSize="15sp"
  android:textColor="@color/white"
  android:background="@drawable/shape_btn"/>

</LinearLayout>

이 레이아웃 에 문제 가 있 습 니 다.인증 코드 를 가 져 오 는 이 TextView 의 글 자 는 카운트다운 기간 에 변화 가 있 고,매번 글자 의 변화 길이 가 다 르 기 때 문 입 니 다.layoutwidth 를 wrap 로 설정content,그러면 이 TextView 의 길 이 는 변화 하고 인터페이스 미관 에 영향 을 줄 수 있 으 므 로 길 이 를 고정 시 킨 다음 인증 코드 를 입력 상자 의 layotweight 를 1 로 설정 하면 됩 니 다. 
3.구체 적 인 사용 방법 

//          
countDownTimer = new CountDownTimerUtils(tv_send_code, 60000, 1000);
countDownTimer.start();
그 중에서 60000 은 카운트다운 시간,즉 60s 를 대표 한다.1000 대 표 는 매번 1s 씩 체감 한다. 
이상 은 구체 적 인 실현 과정 입 니 다.아래 에 몇 장의 효과 도 를 첨부 합 니 다!



이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기