美文网首页
android button 代码设置圆角.

android button 代码设置圆角.

作者: mengyong | 来源:发表于2017-11-02 12:51 被阅读0次

    intstrokeWidth =5;// 3dp 边框宽度

    introundRadius =15;// 8dp 圆角半径

    intstrokeColor = Color.parseColor("#33bb77");//边框颜色

    intfillColor = Color.parseColor("#33bb77");//内部填充颜色

    GradientDrawable gd =newGradientDrawable();//创建drawable

    gd.setColor(fillColor);

    gd.setCornerRadius(roundRadius);

    gd.setStroke(strokeWidth, strokeColor);

    //gd.setShape(1);  //1  圆形      把宽高设置一样就是圆形按钮了

    btn.setBackgroundDrawable(gd);//但是如果想设置Gradient的渐变色该咋办呢?方法是改变GradientDrawable的创建方法:

    //int colors[] = { 0xff255779 , 0xff3e7492, 0xffa6c0cd };//分别为开始颜色,中间夜色,结束颜色

    //GradientDrawable gd = new GradientDrawable(GradientDrawable.Orientation.TOP_BOTTOM, colors);

    相关文章

      网友评论

          本文标题:android button 代码设置圆角.

          本文链接:https://www.haomeiwen.com/subject/yrpopxtx.html