안 드 로 이 드 계 정 등록 클릭 하여 인증번호 카운트다운 효과 획득
효과 그림:
코드:
RegisterActivity.java
import android.os.Bundle;
import android.support.v7.widget.Toolbar;
import android.view.View;
import android.widget.Button;
import com.jialianjia.bzw.BaseActivity;
import com.jialianjia.bzw.R;
import com.jialianjia.bzw.utils.CountDownButtonHelper;
import com.lidroid.xutils.ViewUtils;
import com.lidroid.xutils.view.annotation.ViewInject;
/**
*
* Created by GXS on 2016/4/21.
*/
public class RegisterActivity extends BaseActivity{
private Button btn_yzm;
@ViewInject(R.id.toolbar)
Toolbar toolbar;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_register);
ViewUtils.inject(this);
initToolBar(toolbar," ",true);
// --start
btn_yzm = (Button) findViewById(R.id.btn_yzm);
btn_yzm.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
CountDownButtonHelper helper = new CountDownButtonHelper(btn_yzm," ",60,1);
helper.setOnFinishListener(new CountDownButtonHelper.OnFinishListener() {
@Override
public void finish() {
// Toast.makeText(RegisterActivity.this," ",Toast.LENGTH_SHORT).show();
btn_yzm.setText(" ");
}
});
helper.start();
}
}); // --end
}
}
레이아웃 파일:activity_register.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">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:theme="@style/AppTheme.AppBarOverlay"
android:fitsSystemWindows="true" />
<LinearLayout
android:layout_height="50dp"
android:layout_width="match_parent"
android:layout_marginTop="10dp"
android:layout_marginRight="10dp"
android:layout_marginLeft="10dp"
android:background="@color/white"
android:orientation="horizontal">
<TextView
android:id="@+id/tv_phone"
android:layout_width="60dp"
android:layout_height="wrap_content"
android:text="@string/tv_info_phone"
android:layout_margin="8dp"
android:textColor="@color/black"
android:layout_gravity="center_vertical"
android:textSize="17sp"/>
<EditText
android:id="@+id/et_phone"
android:layout_width="190dp"
android:layout_height="35dp"
android:layout_toRightOf="@id/tv_phone"
android:background="@null"
android:hint="@string/edt_phone_tips"
android:maxLength="20"
android:layout_gravity="center_vertical"
android:singleLine="true"
android:textSize="16sp" />
<View
android:layout_width="2px"
android:layout_height="50dp"
android:background="@color/driverline" />
<Button
android:id="@+id/btn_yzm"
android:layout_width="wrap_content"
android:layout_height="50dp"
android:layout_marginLeft="3dp"
android:layout_gravity="center"
android:background="@color/white"
android:text="@string/btn_yzm_text"/>
</LinearLayout>
<View
android:id="@+id/view_line"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_below="@id/tv_phone"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="@color/driverline" />
<LinearLayout
android:layout_height="50dp"
android:layout_width="match_parent"
android:layout_marginTop="10dp"
android:layout_marginRight="10dp"
android:layout_marginLeft="10dp"
android:background="@color/white"
android:orientation="horizontal">
<TextView
android:id="@+id/tv_yzm"
android:layout_width="60dp"
android:layout_height="wrap_content"
android:text="@string/tv_yzm_text"
android:layout_margin="8dp"
android:textColor="@color/black"
android:layout_gravity="center_vertical"
android:textSize="17sp"/>
<EditText
android:id="@+id/et_yzm"
android:layout_width="190dp"
android:layout_height="35dp"
android:layout_toRightOf="@id/tv_phone"
android:background="@null"
android:hint="@string/edt_yzm_tips"
android:maxLength="20"
android:layout_gravity="center_vertical"
android:singleLine="true"
android:textSize="16sp" />
</LinearLayout>
<View
android:id="@+id/view_line1"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_below="@id/tv_phone"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="@color/driverline" />
<LinearLayout
android:layout_height="50dp"
android:layout_width="match_parent"
android:layout_marginTop="10dp"
android:layout_marginRight="10dp"
android:layout_marginLeft="10dp"
android:background="@color/white"
android:orientation="horizontal">
<TextView
android:id="@+id/tv_password"
android:layout_width="60dp"
android:layout_height="wrap_content"
android:text="@string/tv_password_text"
android:layout_margin="8dp"
android:textColor="@color/black"
android:layout_gravity="center_vertical"
android:textSize="17sp"/>
<EditText
android:id="@+id/et_password"
android:layout_width="190dp"
android:layout_height="35dp"
android:layout_toRightOf="@id/tv_phone"
android:background="@null"
android:hint="@string/edt_password_text"
android:maxLength="20"
android:layout_gravity="center_vertical"
android:singleLine="true"
android:textSize="16sp" />
</LinearLayout>
<View
android:id="@+id/view_line2"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_below="@id/tv_phone"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="@color/driverline" />
<Button
android:id="@+id/btn_regist"
android:layout_width="match_parent"
android:layout_height="45dp"
android:layout_marginTop="30dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="@drawable/btn_select"
android:gravity="center"
android:padding="5dp"
android:text="@string/btn_regist_text"
android:textColor="@color/white"
android:textSize="16sp" />
</LinearLayout>
이상 이 바로 본문의 전체 내용 입 니 다.여러분 께 참고 가 될 수 있 기 를 바 랍 니 다.여러분 들 도 저 희 를 많이 응원 해 주시 기 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 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에 따라 라이센스가 부여됩니다.