Android 인증 코드 로그 인 실현
결과 전시
1.가방 안내
1.1 프로젝트 의 gradle 에서 가 져 오기
maven { url "https://www.jitpack.io" }
1.2 model 의 gradle 에 있 는 dependencies 가 져 오기
//XUI
implementation 'com.github.xuexiangjys:XUI:1.1.6'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.recyclerview:recyclerview:1.1.0'
implementation 'com.google.android.material:material:1.1.0'
implementation 'com.github.bumptech.glide:glide:4.11.0'
1.3 오른쪽 상단 의 sync now 클릭
2.새 xml 파일
phone_code.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
xmlns:app="http://schemas.android.com/apk/res-auto">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="30dp"
android:layout_marginTop="50dp"
android:textSize="25dp"
android:textStyle="bold"
android:text=" "
/>
<TextView
android:id="@+id/phone_number_str"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="18dp"
android:textColor="#000000"
android:layout_marginLeft="30dp"
android:layout_marginTop="5dp"
/>
<com.xuexiang.xui.widget.edittext.verify.VerifyCodeEditText
android:id="@+id/phone_code_input"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginTop="26dp"
android:layout_marginRight="10dp"
app:vcet_is_pwd="false"
app:vcet_number="6"
app:vcet_pwd_radius="10dp"
app:vcet_text_color="#000000"
app:vcet_width="50dp" />
<TextView
android:id="@+id/re_get_code"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:layout_marginLeft="30dp"
android:textColor="#60000000"
android:textSize="20dp"
/>
<TextView
android:id="@+id/get_code"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:layout_marginLeft="30dp"
android:textColor="#60000000"
android:textSize="15dp"
/>
</LinearLayout>
3.활동 수정MainActivity.java
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.content.Intent;
import android.view.View;
import android.widget.TextView;
import androidx.annotation.Nullable;
import java.lang.reflect.Field;
import java.util.Timer;
import java.util.TimerTask;
public class MainActivity extends AppCompatActivity implements View.OnClickListener {
TextView phoneNumberStr;
TextView codeCountDown;
TextView reGetCode;
private int recLen = 10;
Timer timer = new Timer();
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.phone_code);
init();//
String phone = new String("15968373790");
if (phone.length() < 11)
phoneNumberStr.setText(" "+phone);
else
phoneNumberStr.setText(" "+phone.substring(0,3)+"****"+phone.substring(7));
timer.schedule(task, 1000, 1000); // 1000 (1 )
}
TimerTask task = new TimerTask() {
@Override
public void run() {
runOnUiThread(new Runnable() {
@Override
public void run() {
codeCountDown.setVisibility(View.VISIBLE);
recLen--;
codeCountDown.setText(recLen+" ");//
if(recLen <= 0){
timer.cancel();
codeCountDown.setVisibility(View.GONE);
reGetCode.setText(" ");// ,
reGetCode.setVisibility(View.VISIBLE);//
reGetCode.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
reGetCode.setVisibility(View.GONE);
recLen = 10;
codeCountDown.setVisibility(View.VISIBLE);
codeCountDown.setText(recLen+" ");
timer = new Timer();
//task , task , state ,state 1 , 0
Field field;
try {
field = TimerTask.class.getDeclaredField("state");
field.setAccessible(true);
field.set(task, 0);
} catch (NoSuchFieldException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
timer.schedule(task, 1000, 1000);
}
});
}
}
});
}
};
private void init() {
phoneNumberStr = findViewById(R.id.phone_number_str);
codeCountDown = findViewById(R.id.re_get_code);
reGetCode = findViewById(R.id.re_get_code);
reGetCode.setOnClickListener(this);
reGetCode.setVisibility(View.GONE);
}
@Override
public void onClick(View v) {
Intent intent;//
switch (v.getId()){
case R.id.get_code:
reGetCode.setVisibility(View.GONE);
timer.schedule(task, 1000, 1000); // timeTask
break;
}
}
}
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Bitrise에서 배포 어플리케이션 설정 테스트하기이 글은 Bitrise 광고 달력의 23일째 글입니다. 자체 또는 당사 등에서 Bitrise 구축 서비스를 사용합니다. 그나저나 며칠 전 Bitrise User Group Meetup #3에서 아래 슬라이드를 발표했...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.