博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android实现自定义带文字和图片的Button
阅读量:6804 次
发布时间:2019-06-26

本文共 3510 字,大约阅读时间需要 11 分钟。

hot3.png

一.用系统自带的Button实现

  最简单的一种办法就是利用系统自带的Button来实现,这种方式代码量最小。在Button的属性中有一个是drawableLeft,这个属性可以把图片设置在文字的左边,但是这种方式必须让icon的背景色是透明的,如果icon的背景色不是透明的话,会导致点击按钮时icon部分的背景色不会发生变化。

  

实现效果:

  

  如果要让文字在图标下方,改成drawableTop即可。 

二.继承系统的Button然后进行重绘

package com.test;import android.content.Context;import android.graphics.Bitmap;import android.graphics.BitmapFactory;import android.graphics.Canvas;import android.util.AttributeSet;import android.widget.Button;public class ImageTextButton2 extends Button {            private int resourceId = 0;    private Bitmap bitmap;        public ImageTextButton2(Context context) {        super(context,null);    }        public ImageTextButton2(Context context,AttributeSet attributeSet) {        super(context, attributeSet);        this.setClickable(true);        resourceId = R.drawable.icon;        bitmap = BitmapFactory.decodeResource(getResources(), resourceId);    }        public void setIcon(int resourceId)     {        this.bitmap = BitmapFactory.decodeResource(getResources(), resourceId);        invalidate();    }        @Override    protected void onDraw(Canvas canvas) {        // TODO Auto-generated method stub                // 图片顶部居中显示        int x = (this.getMeasuredWidth() - bitmap.getWidth())/2;        int y = 0;        canvas.drawBitmap(bitmap, x, y, null);        // 坐标需要转换,因为默认情况下Button中的文字居中显示        // 这里需要让文字在底部显示        canvas.translate(0,(this.getMeasuredHeight()/2) - (int) this.getTextSize());        super.onDraw(canvas);    }        }

然后再布局文件中调用:

注意,在xml文件中调用时,对于layout_width和layout_height两个属性千万不能用wrap_content,否则会导致按钮显示出来的只有文字部分。

三.继承布局文件

  分析发现一个带文字和icon的button其实可以看成一个线性布局或相对布局,因此可以继承布局来实现。

  先实现一个button的布局文件img_text_bt.xml:

    
      
    

然后去继承RelativeLayout布局:

package com.test;import android.content.Context;import android.util.AttributeSet;import android.view.LayoutInflater;import android.widget.ImageView;import android.widget.RelativeLayout;import android.widget.TextView;public class ImageTextButton1 extends RelativeLayout {        private ImageView imgView;      private TextView  textView;    public ImageTextButton1(Context context) {        super(context,null);    }        public ImageTextButton1(Context context,AttributeSet attributeSet) {        super(context, attributeSet);                LayoutInflater.from(context).inflate(R.layout.img_text_bt, this,true);                this.imgView = (ImageView)findViewById(R.id.imgview);        this.textView = (TextView)findViewById(R.id.textview);                this.setClickable(true);        this.setFocusable(true);    }        public void setImgResource(int resourceID) {        this.imgView.setImageResource(resourceID);    }        public void setText(String text) {        this.textView.setText(text);    }        public void setTextColor(int color) {        this.textView.setTextColor(color);    }        public void setTextSize(float size) {        this.textView.setTextSize(size);    }    }

然后就可以在需要的xml文件中调用:

再在Activity中使用:

bt1 = (ImageTextButton1)findViewById(R.id.bt1);        bt1.setText("icon");        bt1.setTextColor(Color.rgb(0, 0, 0));        bt1.setOnClickListener(new OnClickListener() {                        @Override            public void onClick(View v) {                // TODO Auto-generated method stub                Toast.makeText(MainActivity.this, "bt1被点击了", Toast.LENGTH_SHORT).show();            }        });

三种不同方法最后的运行效果:

转载于:https://my.oschina.net/robslove/blog/667453

你可能感兴趣的文章
iOS开发之 -- 判断tableview/scrollview的滑动方法,及导航栏渐变的实现代码
查看>>
流媒体知识核心慨念
查看>>
Bootstrap导航
查看>>
前端工程师技能之photoshop巧用系列第一篇——准备篇
查看>>
欧美姓氏的来源
查看>>
hdu3555
查看>>
注册登录
查看>>
django 基本用法
查看>>
hibernate -- HQL语句总结
查看>>
PowerDesigner跟表的字段加注释
查看>>
Spring JDBC Framework详解——批量JDBC操作、ORM映射
查看>>
Codeforces 894 A B 组合数学 比赛
查看>>
C#后台调用前台javascript的五种方法小结
查看>>
GDB 多线程调试基本命令
查看>>
C++中的友元
查看>>
MySql常用函数
查看>>
移动端 触屏滑动条菜单(完善版 转)
查看>>
可变参数函数的实现
查看>>
ABP官方文档翻译 4.4 授权
查看>>
小程序-提交信息(姓名,电话)
查看>>