網絡判斷,進度條顯示,數組轉化Drawable對象--封裝的方法

//判斷手機是否有網
public boolean isConnected() {
    // 獲取手機全部鏈接管理對象(包括對wi-fi,net等鏈接的管理)
    try {
        ConnectivityManager connectivity = (ConnectivityManager) this
                .getSystemService(this.CONNECTIVITY_SERVICE);
        if (connectivity != null) {
            // 獲取網絡鏈接管理的對象
            NetworkInfo info = connectivity.getActiveNetworkInfo();

            if (info != null && info.isConnected()) {
                // 判斷當前網絡是否已經鏈接
                if (info.getState() == NetworkInfo.State.CONNECTED) {
                    return true;
                }
            }
        }
    } catch (Exception e) {
    }
    return false;
}

/**
 * 隱藏正在加載的進度條
 */
private Dialog loadDialog;
private int dialogNum;

public void dismissLoadDialog() {
    dialogNum--;
    if (dialogNum > 0) {
        return;
    }
    if (null != loadDialog && loadDialog.isShowing() == true) {
        loadDialog.dismiss();
        loadDialog = null;
    }
}


//把數組轉化爲Drawable對象
public static Drawable byteToDrawable(byte[] byteArray) {
    try {
        String string = new String(byteArray, "UTF-8");
    } catch (UnsupportedEncodingException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    ByteArrayInputStream ins = new ByteArrayInputStream(byteArray);
    return Drawable.createFromStream(ins, null);
}

/**
 * 顯示正在加載的進度條
 */
public void showLoadingDialog() {
    dialogNum++;
    if (loadDialog != null && loadDialog.isShowing()) {
        loadDialog.dismiss();
        loadDialog = null;
    }
    loadDialog = new Dialog(this, R.style.dialog);
    loadDialog.setCanceledOnTouchOutside(false);

    loadDialog.setContentView(R.layout.layout_dialog);
    try {
        loadDialog.show();
    } catch (WindowManager.BadTokenException exception) {
        exception.printStackTrace();
    }
}
//檢查郵箱
private boolean checkEmail() {
    String emailString = edit_email.getText().toString().trim();
    if (TextUtils.isEmpty(emailString)) {
        hint_emamil.setText("郵箱不能爲空");
        return false;
    }
    Pattern pattern = Pattern.compile("^([a-zA-Z0-9_\\-\\.]+)@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.)|(([a-zA-Z0-9\\-]+\\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\\]?)$");
    Matcher matcher = pattern.matcher(emailString);
    if (matcher.matches()) {
        hint_emamil.setText("");
        return true;
    } else {
        hint_emamil.setText("郵箱格式不正確");
        return false;
    }
}
private boolean checkPasswork() {
    String editpasswordsString = edit_password.getText().toString();
    if (TextUtils.isEmpty(editpasswordsString)) {
        hint_passwork.setText("密碼不能爲空");
        return false;
    } else if (editpasswordsString.length() < 6 || editpasswordsString.length() > 16) {
        hint_passwork.setText("密碼僅限6-16個字符");
        return false;
    } else {
        hint_passwork.setText("");
        return true;
    }
}

private boolean checkAgainPasswork() {

    String editagainpasswordsString = edit_again_password.getText().toString();
    if (TextUtils.isEmpty(editagainpasswordsString)) {
        hint_again_passord.setText("確認密碼不能爲空");
        // shakeViewToNotifyUser(edit_again_password);
        return false;
    } else {
        hint_again_passord.setText("");
        String passwordsString = edit_password.getText().toString();
        if (!passwordsString.equals(editagainpasswordsString)) {
            hint_again_passord.setText("密碼不一致");
            return false;
        } else {
            return true;
        }
    }
}
//檢查驗證碼
private boolean checkCaptcha() {
    if (mCaptchaBytes == null) {
        Toast.makeText(getActivity(), "未獲取驗證碼", Toast.LENGTH_SHORT).show();
        return false;
    }
    mCaptchaEditTextString = edit_yanzhengma.getText().toString().trim();
    if(mCaptchaEditTextString.contains(" ")){
        hint_yanzhengma.setText("驗證碼不正確");
        return false;
    }
    if (mCaptchaEditTextString == null || "".equals(mCaptchaEditTextString)) {
        // shakeViewToNotifyUser(edit_yanzhengma);
        hint_yanzhengma.setText("驗證碼不能爲空");
        return false;
    } else {
        hint_yanzhengma.setText("");
        return true;
    }
}

 //檢查協議
private boolean checkXieyi() {
    CheckBox checkBox = (CheckBox) view.findViewById(R.id.xieyi_check);
    if (!checkBox.isChecked()) {
        hint_xieyi.setText("未勾選《央視網網絡服務使用協議》");
        return false;
    } else {
        hint_xieyi.setText("");
        return true;
    }
}

 

使用數組

if (!isConnected()) {
    showToast(R.string.network_invalid);
    return;
}

//點擊註冊
if (!checkEmail()) {
    return;
}
if (!checkPasswork()) {
    return;
}
if (!checkAgainPasswork()) {
    return;
}

if (!checkCaptcha()) {
    return;
}

if (!checkXieyi()) {
    return;
}
相關文章
相關標籤/搜索