为什么不使用shape标签

我想大家平常都用过shape标签来定义一个Drawable,来实现一些例如圆角、设置描边等一些需求。但是,最近发现项目中res/drawable/下的shape标签文件越来越多,每当我们实现一些稍微不同的小需求时(例如圆角半径不同)就要新建一个shape标签的文件,这不仅很繁琐,还增加了内存、增加了apk的大小。

GradientDrawable:shape的动态实现

在我们使用shape标签定义的xml时,其实最终转化为了GradientDrawable。所以,我们可以通过动态设置GradientDrawable来实现圆角、设置描边等功能需求。

动态实现圆角、修改背景色、设置描边Button

1、自定义GradientDrawable

如果我们想更加方便的自定义配置圆角值等功能,需要继承GradientDrawable,关于自定义view的流程想必大家都熟悉这里不再详细说明,代码如下:

/**

* @author zhaotk

* res/drawable 中的shape文件动态设置

*/

public class RoundButtonDrawable extends GradientDrawable {

private int mStrokeWidth = 0;

/**

* 设置描边宽度和颜色

*/

void setStrokeData(int width, int color) {

mStrokeWidth = width;

setStroke(width, color);

}

void setStrokeColor(int color){

setStrokeData(mStrokeWidth, color);

}

static RoundButtonDrawable fromAttrSet(Context context, AttributeSet attrs, int defStyleAttr) {

TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.RoundButton, defStyleAttr, 0);

int bgColor = typedArray.getColor(R.styleable.RoundButton_bgColor, ContextCompat.getColor(context,R.color.white));

int mRadius = typedArray.getDimensionPixelSize(R.styleable.RoundButton_radius, 0);

int mTopLeftRadius = typedArray.getDimensionPixelSize(R.styleable.RoundButton_topLeftRadius, 0);

int mTopRightRadius = typedArray.getDimensionPixelSize(R.styleable.RoundButton_topRightRadius, 0);

int mBottomLeftRadius = typedArray.getDimensionPixelSize(R.styleable.RoundButton_bottomLeftRadius, 0);

int mBottomRightRadius = typedArray.getDimensionPixelSize(R.styleable.RoundButton_bottomRightRadius, 0);

int strokeColor = typedArray.getColor(R.styleable.RoundButton_strokeColor,ContextCompat.getColor(context,R.color.white));

int strokeWidth = typedArray.getDimensionPixelSize(R.styleable.RoundButton_strokeWidth, 0);

typedArray.recycle();

RoundButtonDrawable roundButtonDrawable = new RoundButtonDrawable();

//设置背景颜色

roundButtonDrawable.setColor(bgColor);

//优先设置指定的圆角

if (mTopLeftRadius > 0 || mTopRightRadius > 0 || mBottomLeftRadius > 0 || mBottomRightRadius > 0) {

float[] radii = new float[]{

mTopLeftRadius, mTopLeftRadius,

mTopRightRadius, mTopRightRadius,

mBottomLeftRadius, mBottomLeftRadius,

mBottomRightRadius, mBottomRightRadius

};

roundButtonDrawable.setCornerRadii(radii);

} else {

roundButtonDrawable.setCornerRadius(mRadius);

}

//设置描边的宽度和颜色

roundButtonDrawable.setStrokeData(strokeWidth, strokeColor);

return roundButtonDrawable;

}

}

image.gif

​attr代码如下:

image.gif

2、自定义Button,设置GradientDrawable为背景

因为GradientDrawable是shape标签的具体代码实现,所以,如果我们想通过GradientDrawable来实现圆角等功能需求的话,需要把上一步骤中我们自定义的GradientDrawable来作为button的background,具体代码如下:

/**

* @author zhaotk

* 可以设置背景色、指定圆角、描边的宽度和颜色

*/

public class RoundButton extends AppCompatTextView {

private RoundButtonDrawable roundButtonDrawable;

public RoundButton(Context context) {

super(context);

init(context, null, 0);

}

public RoundButton(Context context, AttributeSet attrs) {

super(context, attrs, R.attr.RoundButtonStyle);

init(context, attrs, R.attr.RoundButtonStyle);

}

public RoundButton(Context context, AttributeSet attrs, int defStyleAttr) {

super(context, attrs, defStyleAttr);

init(context, attrs, defStyleAttr);

}

private void init(Context context, AttributeSet attrs, int defStyleAttr) {

roundButtonDrawable = RoundButtonDrawable.fromAttrSet(context, attrs, defStyleAttr);

ViewHelperUtils.setBackgroundKeepingPadding(this, roundButtonDrawable);

}

/**

* 设置背景颜色

* @param color

*/

@Override

public void setBackgroundColor(int color) {

roundButtonDrawable. setColor(color);

}

/**

* 设置描边的宽度和颜色

* @param width

* @param color

*/

public void setStrokeData(int width, int color) {

roundButtonDrawable.setStrokeData(width, color);

}

/**

* 设置描边颜色

* @param color

*/

public void setStrokeColors(int color) {

roundButtonDrawable.setStrokeColor(color);

}

/**

* 设置四个角的半径

* @param radius

*/

public void setRadius(int radius){

roundButtonDrawable.setCornerRadius(radius);

}

/**

* 设置 每一个角的半径

* @param topLeftRadius 左上角半径

* @param topRightRadius 右上角半径

* @param bottomLeftRadius 左下角半径

* @param bottomRightRadius 右下角半径

*/

public void setEachCornerRadius(int topLeftRadius,int topRightRadius,int bottomLeftRadius,int bottomRightRadius){

float[] radius = new float[]{

topLeftRadius, topLeftRadius,

topRightRadius, topRightRadius,

bottomLeftRadius, bottomLeftRadius,

bottomRightRadius, bottomRightRadius

};

roundButtonDrawable. setCornerRadii(radius);

}

/**

* 设置渐变

* @param gradientType 渐变类型

* @param orientation 渐变方向

* @param colors 渐变颜色

*/

public void setGradient(int gradientType, GradientDrawable.Orientation orientation, int[] colors){

roundButtonDrawable.setGradientType(gradientType);

roundButtonDrawable.setOrientation(orientation);

roundButtonDrawable.setColors(colors);

}

public static void setBackgroundKeepingPadding(View view, Drawable drawable) {

int[] padding = new int[]{view.getPaddingLeft(), view.getPaddingTop(), view.getPaddingRight(), view.getPaddingBottom()};

view.setBackground(drawable);

view.setPadding(padding[0], padding[1], padding[2], padding[3]);

}

}

image.gif

3、在xml布局文件中直接引用自定义的button

xmlns:app="http://schemas.android.com/apk/res-auto"

xmlns:tools="http://schemas.android.com/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

tools:context=".MainActivity">

android:id="@+id/bt"

android:layout_width="300dp"

android:layout_height="wrap_content"

android:text="Hello World!"

android:padding="10dp"

app:radius="30dp"

app:bgColor="@color/colorAccent"

android:textColor="#ffffff"

android:gravity="center_horizontal"

android:layout_marginTop="60dp"

app:layout_constraintLeft_toLeftOf="parent"

app:layout_constraintRight_toRightOf="parent"

app:layout_constraintTop_toTopOf="parent" />

android:id="@+id/bt2"

android:layout_width="300dp"

android:layout_height="wrap_content"

android:text=""

android:padding="10dp"

app:topLeftRadius="10dp"

app:bgColor="@color/colorPrimary"

android:textColor="#ffffff"

android:gravity="center_horizontal"

android:layout_marginTop="30dp"

app:layout_constraintTop_toBottomOf="@+id/bt"

app:layout_constraintLeft_toLeftOf="parent"

app:layout_constraintRight_toRightOf="parent" />

android:id="@+id/bt3"

android:layout_width="300dp"

android:layout_height="wrap_content"

android:text=""

android:padding="10dp"

app:radius="30dp"

app:strokeColor="@color/colorAccent"

app:strokeWidth="2dp"

app:bgColor="@color/colorPrimary"

android:textColor="#ffffff"

android:gravity="center_horizontal"

android:layout_marginTop="30dp"

app:layout_constraintTop_toBottomOf="@+id/bt2"

app:layout_constraintLeft_toLeftOf="parent"

app:layout_constraintRight_toRightOf="parent" />

image.gif

​也可以通过代码动态设置:

public class MainActivity extends AppCompatActivity {

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

RoundButton bt = findViewById(R.id.bt);

bt.setRadius(50);

// bt.setStrokeColors(ContextCompat.getColor(this,R.color.colorPrimary));

bt.setBackgroundColor(ContextCompat.getColor(this,R.color.colorPrimary));

// bt.setEachCornerRadius(50,0,0,0);

// bt.setStrokeData(6,ContextCompat.getColor(this,R.color.colorPrimary));

// int[] colors ={ContextCompat.getColor(this,R.color.colorPrimary) , ContextCompat.getColor(this,R.color.colorAccent), ContextCompat.getColor(this,R.color.white)};

// bt.setGradient(GradientDrawable.RECTANGLE,GradientDrawable.Orientation.LEFT_RIGHT,colors);

}

}

image.gif

最后让我们看一下效果图​

image

image.gif

​​

这里需要注意的是:因为我们通过把自定义的GradientDrawable来作为button的background来实现,所以,这时再设置button的background会无效。

android 背景描边,Android告别使用shape标签,自定义实现圆角、背景色、描边Button...相关推荐

  1. android 背景 投影,Android ImageView投影

    在android studio中有build drawable,你可以使用它来将阴影应用到任何View.这类似于投影. android:background="@drawable/abc_m ...

  2. 改变android背景方法,android 改变背景图片的两种方法

    1.利用drawable XML 在res/drawable下创建文件,如:myselect.xml android:drawable="@drawable/buttom_focused&q ...

  3. android+背景+网络图片,android背景图片平铺

    Android背景平铺: 在drawable文件夹下建立如下文件bg.xml: android:src ="@drawable/pattern" android:tileMode ...

  4. android背景气泡,android之View跟LinearLayout的重写(实现背景气泡和波纹效果)

    android之View和LinearLayout的重写(实现背景气泡和波纹效果) 前两天看了仿android L里面水波纹效果的两篇博客 Android L中水波纹点击效果的实现 Android自定 ...

  5. (转载)Android GradientDrawable(shape标签定义) 静态使用和动态使用(圆角,渐变实现)

    最近被吐槽界面太丑,还是很尴尬的,全公司就一个UI设计师,所以很多事情还是不忍直视,一个同事问我,背景可不可以使用渐变的感觉,然后我就有种突然感觉眼前一亮的感觉.还真的没有做过这方面的东西,单纯使用渐 ...

  6. Android下基于XML的Graphics shape的高级UI设计,定义圆角背景等

    大家很多人都用过新浪微博android客户端,感觉它的UI实在做到很精致,昨天晚上熬夜研究了新浪微博的UI相关的代码,于是有了下面这个文章. 以前的UI设计一般有两种方式,首先是UI把图形设计好,分解 ...

  7. android 背景切换动画效果代码,关于Android shape gradient背景渐变

    百度后,发现渐变色不仅可以根据xml来实现,也可以用java代码来实现,由于目前没有那么多时间,只记录xml实现的方法:以后在记录Java实现的代码. 通过Shape gradient标签来实现 首先 ...

  8. android 背景描边,Android实现带描边的圆角图片

    利用学过的BitmapShader渲染类,我们来实现一个带描边的圆角图片. 具体实现: 用来显示自定义的绘图类的布局文件 res/layout/main.xml: xmlns:tools=" ...

  9. android设置背景颜色渐变,Android背景渐变色(shape,gradient)

    Android设置背景色可以通过在res/drawable里定义一个xml,如下: android:startColor="#FFF" android:endColor=" ...

最新文章

  1. python怎么导入视频-python怎么导入数据
  2. 最强悍的VS插件—reSharper
  3. 【SpringBoot】【Thyemeleaf 】【Spring EL表达式】 SPEL调用静态类、静态方法
  4. python实现解释器_Python 解释器初探
  5. 自定义标签 (choose)
  6. 一道笔试题引发的Promise笔记
  7. flask mvc模式开发_Flask中文文档-转载
  8. 明年5G智能手机大爆发!出货量惊人
  9. Python 多进程
  10. Go 将在下个版本支持新型排序算法:pdqsort
  11. golang实现RPC的几种方式
  12. public class c中_Spring中@Import的各种用法以及ImportAware接口
  13. 沫沫金::struts下载文档[解决方案]
  14. Go语言学习笔记(四)结构体struct 接口Interface 反射reflect
  15. sqlldr的用法详解
  16. 浅析 Redis 复制
  17. PHP中将Word文件转换为PDF
  18. w7计算机用户密码设置,Win7开机密码怎么设置 Win7电脑设置开机密码图文教程
  19. 几何分布的期望和方差公式推导_算法数学基础-统计学最基础之均值、方差、协方差、矩...
  20. iOS 工作中遇到的问题(面试重点)

热门文章

  1. STM32 HAL库获取系统时钟与标准库获取系统时钟
  2. 线性电机(linear motor)
  3. React 父子组件的生命周期关系(16.4版本及以后)
  4. 《安卓逆向》查壳工具,权限查询,提取工具
  5. 不等距双杆模型_对磁场中双杆模型问题的解析(精)
  6. java 54张扑克牌_Java基础高级综合练习题扑克牌的创建
  7. HCIA网络基础01
  8. air dots 配对_Redmi AirDots可以作为iphone的合格伴侣吗?
  9. box-shadow单边
  10. 开源星空照片_如何拍摄星空的好照片