全网整合营销服务商

电脑端+手机端+微信端=数据同步管理

免费咨询热线:400-708-3566

Android中自定义ImageView添加文字设置按下效果详解

前言

我们在上一篇文章教大家使用ImageView+TextView的组合自定义控件...可能在开发中你还需要其他功能,例如:按下效果,可以在代码中改变字体颜色,更换图片等等...

首先上效果图,看看是否是你需要的


效果图

下面开始撸代码

MyImageTextView.java

public class MyImageTextView extends LinearLayout {

 private ImageView mImageView = null;
 private TextView mTextView = null;
 private int imageId, pressImageId;
 private int textId, textColorId, textTopId, pressTextColorId;

 public MyImageTextView(Context context) {
  this(context, null);
 }

 public MyImageTextView(Context context, @Nullable AttributeSet attrs) {
  this(context, attrs, 0);
 }

 public MyImageTextView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
  super(context, attrs, defStyleAttr);
  this.setOrientation(LinearLayout.VERTICAL);//设置垂直排序
  this.setGravity(Gravity.CENTER);//设置居中
  if (mImageView == null) {
   mImageView = new ImageView(context);
  }
  if (mTextView == null) {
   mTextView = new TextView(context);
  }
  if (attrs == null)
   return;
  int count = attrs.getAttributeCount();
  for (int i = 0; i < count; i++) {
   String attrName = attrs.getAttributeName(i);//获取属性名称
   //根据属性获取资源ID
   switch (attrName) {
    //显示的图片
    case "image":
     imageId = attrs.getAttributeResourceValue(i, 0);
     break;
    //按下时显示的图片
    case "pressImage":
     pressImageId = attrs.getAttributeResourceValue(i, 0);
     break;
    //显示的文字
    case "text":
     textId = attrs.getAttributeResourceValue(i, 0);
     break;
    //设置文字颜色
    case "textColor":
     textColorId = attrs.getAttributeResourceValue(i, 0);
     break;
    //设置文字距离上面图片的距离
    case "textTop":
     textTopId = attrs.getAttributeResourceValue(i, 0);
     break;
    //按下时显示的文字颜色
    case "pressTextColor":
     pressTextColorId = attrs.getAttributeResourceValue(i, 0);
     break;

   }
  }
  init();

 }

 /**
  * 初始化状态
  */
 private void init() {
  this.setText(textId);
  mTextView.setGravity(Gravity.CENTER);//字体居中
  this.setTextColor(textColorId);
  this.setTextPaddingTop(textTopId);
  this.setImgResource(imageId);
  addView(mImageView);//将图片加入
  addView(mTextView);//将文字加入
 }


 @Override
 public boolean onTouchEvent(MotionEvent event) {
  int action = event.getAction();
  switch (action) {
   //按下
   case MotionEvent.ACTION_DOWN:
    if (pressImageId != 0)
     this.setImgResource(pressImageId);
    if (pressTextColorId != 0)
     this.setTextColor(pressTextColorId);
    break;
   //移动
   case MotionEvent.ACTION_MOVE:
    break;
   //抬起
   case MotionEvent.ACTION_UP:
    if (imageId != 0)
     this.setImgResource(imageId);
    if (textColorId != 0)
     this.setTextColor(textColorId);
    break;
  }
  return super.onTouchEvent(event);
 }

 /**
  * 设置默认的图片
  *
  * @param resourceID 图片id
  */
 public void setImgResourceDefault(int resourceID) {
  imageId = resourceID;
  setImgResource(resourceID);
 }

 /**
  * 设置按下的图片
  *
  * @param resourceID 图片id
  */
 public void setImgResourcePress(int resourceID) {
  pressImageId = resourceID;
 }


 /**
  * 设置显示的图片
  *
  * @param resourceID 图片ID
  */
 private void setImgResource(int resourceID) {
  if (resourceID == 0) {
   this.mImageView.setImageResource(0);
  } else {
   this.mImageView.setImageResource(resourceID);
  }
 }


 /**
  * 设置显示的文字
  *
  * @param text
  */
 public void setText(int text) {
  this.mTextView.setText(text);
 }

 /**
  * 设置字体颜色(默认为黑色)
  *
  * @param color
  */
 private void setTextColor(int color) {
  if (color == 0) {
   this.mTextView.setTextColor(Color.BLACK);
  } else {
   this.mTextView.setTextColor(getResources().getColor(color));
  }
 }

 /**
  * 设置默认的颜色
  *
  * @param color 颜色ID
  */
 public void setTextDefaultColor(int color) {
  textColorId = color;
  setTextColor(color);
 }

 /**
  * 设置按下的颜色
  *
  * @param color 颜色ID
  */
 public void setTextPressColor(int color) {
  pressImageId = color;
 }

 /**
  * 设置字体大小
  *
  * @param size
  */
 public void setTextSize(float size) {
  this.mTextView.setTextSize(size);
 }


 /**
  * 设置文字与上面的距离
  * @param top
  */
 public void setTextPaddingTop(int top) {
  if (top != 0)
   this.mTextView.setPadding(0, getResources().getDimensionPixelOffset(top), 0, 0);
 }


}

下面是属性文件

image_text.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>

 <declare-styleable name="imageText">
  <attr name="image" format="integer" />
  <attr name="pressImage" format="integer" />
  <attr name="text" format="integer" />
  <attr name="textColor" format="integer" />
  <attr name="pressTextColor" format="integer" />
  <attr name="textTop" format="integer" />
 </declare-styleable>
</resources>

属性文件存放位置如下图


文件位置

下面我们来看看具体的调用方法


布局调用

当然我们也可以在Activity中进行再次设置, 例如:


在java中设置

这些都是在自定义View中的set方法...也可以根据具体的业务增删set方法.

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对的支持。


# android  # imageview  # 自定义imageview  # 自定义imageview控件  # Android中自定义ImageView添加文字说明详解  # 按下  # 自定义  # 能在  # 来看看  # 还需要  # 这篇文章  # 谢谢大家  # 可以根据  # 这些都是  # 在上  # 一篇文章  # 如下图  # 中你  # 默认为  # 有疑问  # defStyleAttr  # super  # setOrientation  # attrs  # AttributeSet 


相关文章: 网站广告牌制作方法,街上的广告牌,横幅,用PS还是其他软件做的?  宝塔新建站点为何无法访问?如何排查?  韩国服务器如何优化跨境访问实现高效连接?  网站制作软件有哪些,制图软件有哪些?  如何在阿里云虚拟主机上快速搭建个人网站?  制作网站的基本流程,设计网站的软件是什么?  如何通过多用户协作模板快速搭建高效企业网站?  如何在云虚拟主机上快速搭建个人网站?  自助网站制作软件,个人如何自助建网站?  TestNG的testng.xml配置文件怎么写  电商网站制作多少钱一个,电子商务公司的网站制作费用计入什么科目?  建站之星上传入口如何快速找到?  网站制作企业,网站的banner和导航栏是指什么?  临沂网站制作公司有哪些,临沂第四中学官网?  网页设计网站制作软件,microsoft office哪个可以创建网页?  如何通过建站之星自助学习解决操作问题?  美食网站链接制作教程视频,哪个教做美食的网站比较专业点?  太原网站制作公司有哪些,网约车营运证查询官网?  外汇网站制作流程,如何在工商银行网站上做外汇买卖?  建站之星IIS配置教程:代码生成技巧与站点搭建指南  宿州网站制作公司兴策,安徽省低保查询网站?  Python lxml的etree和ElementTree有什么区别  实惠建站价格推荐:2025年高性价比自助建站套餐解析  浅析上传头像示例及其注意事项  教学论文网站制作软件有哪些,写论文用什么软件 ?  网站制作与设计教程,如何制作一个企业网站,建设网站的基本步骤有哪些?  建站主机如何安装配置?新手必看操作指南  海南网站制作公司有哪些,海口网是哪家的?  大连 网站制作,大连天途有线官网?  山东云建站价格为何差异显著?  如何用IIS7快速搭建并优化网站站点?  制作表格网站有哪些,线上表格怎么弄?  建站之星导航如何优化提升用户体验?  建站之星北京办公室:智能建站系统与小程序生成方案解析  c++23 std::expected怎么用 c++优雅处理函数错误返回【详解】  如何通过西部建站助手安装IIS服务器?  PHP正则匹配日期和时间(时间戳转换)的实例代码  我的世界制作壁纸网站下载,手机怎么换我的世界壁纸?  定制建站平台哪家好?企业官网搭建与快速建站方案推荐  Android自定义listview布局实现上拉加载下拉刷新功能  如何快速重置建站主机并恢复默认配置?  制作农业网站的软件,比较好的农业网站推荐一下?  如何选择建站程序?包含哪些必备功能与类型?  如何用虚拟主机快速搭建网站?详细步骤解析  巅云智能建站系统:可视化拖拽+多端适配+免费模板一键生成  专业企业网站设计制作公司,如何理解商贸企业的统一配送和分销网络建设?  网站按钮制作软件,如何实现网页中按钮的自动点击?  小视频制作网站有哪些,有什么看国内小视频的网站,求推荐?  北京网站制作公司哪家好一点,北京租房网站有哪些?  制作网站的软件免费下载,免费制作app哪个平台好? 

您的项目需求

*请认真填写需求信息,我们会在24小时内与您取得联系。