91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

android 驗證碼 (canvas)

發布時間:2020-07-16 15:52:54 來源:網絡 閱讀:468 作者:hlp666666 欄目:移動開發
activity:
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    LinearLayout linearLayout = new LinearLayout(this);
    VerifyCodeView vc = new VerifyCodeView(this,6);
    TextView textView = new TextView(this);
    textView.setText("驗證碼:");
    EditText mInCode = new EditText(this);
    vc.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            v.postInvalidate();//重新調用VerifyCodeView的構造方法,更新驗證碼
            Toast.makeText(getApplicationContext(),"updat code",Toast.LENGTH_LONG).show();
        }
    });
    linearLayout.addView(textView);
    linearLayout.addView(mInCode);
    linearLayout.addView(vc);
    setContentView(linearLayout);
}

view:

private Character[] codes = {'q','w','e','r','t','y','u','i'
                                ,'o','p','a','s','d','f','g','h'
                                ,'j','k','l','z','x','c','v','b'
                                ,'n','m','1','2','3','4','5','6'
                                ,'7','8','9','0'};
private Character[] vcode;

public VerifyCodeView(Context context) {
    super(context);
    vcode = new Character[4];//定義驗證碼的長度
}

public VerifyCodeView(Context context, int codeSize) {
    super(context);
    vcode = new Character[codeSize];//定義驗證碼的長度
}


@Override
protected void onDraw(Canvas canvas) {
    super.onDraw(canvas);
    vcode = getCodes(codes);
    Paint pen = new Paint();
    pen.setColor(Color.WHITE);
    int mwidth = getWidth();
    canvas.drawRect(mwidth*2/3,10.0f,mwidth-20,100.0f,pen);
    Random r = new Random(100);
    int padding = 1;
    for (int i = 0; i < vcode.length; i++) {
        pen.setColor(Color.rgb(r.nextInt(),r.nextInt(),r.nextInt()));
        pen.setTextSize(60);
        //canvas.drawText(new char[]{'a','c','b','d','1','2','e'},0,7,mwidth*2/3+10,70.0f,pen);
        //String text = "h"+r.nextInt()+"e"+r.nextInt()+"l";
        canvas.drawText(vcode[i].toString(),mwidth*2/3+padding,70.0f,pen);
        padding = padding + 35;
    }
}

public Character[] getCodes(Character[] codes){
    Random rd = new Random();
    for (int i = 0; i < vcode.length; i++) {
        vcode[i] = codes[rd.nextInt(36)];
    }
    return vcode;
}
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

晋江市| 永登县| 双牌县| 舞钢市| 城口县| 万盛区| 金湖县| 西乌珠穆沁旗| 乌拉特中旗| 左权县| 美姑县| 东平县| 饶阳县| 辰溪县| 碌曲县| 烟台市| 武冈市| 游戏| 霍邱县| 浠水县| 三穗县| 朝阳市| 永新县| 德阳市| 仁化县| 十堰市| 准格尔旗| 沂水县| 平湖市| 临朐县| 荆州市| 孟津县| 密山市| 阿图什市| 绵竹市| 长汀县| 阿拉善右旗| 报价| 沈丘县| 扶余县| 基隆市|