文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android重写View并自定义属性实例分析

2022-06-06 08:59

关注

本文实例分析了Android重写View并自定义属性的方法。分享给大家供大家参考,具体如下:

这里通过自定义属性 实现如下图所示效果:

第一步:在res\values的目录下新建一个文件attrs.xml

声明一些自定义属性


<?xml version="1.0" encoding="utf-8"?>
<resources>
  <declare-styleable name="CustomViewStyle">
    <attr name="customText" format="string" />
    <attr name="customTextColor" format="color" />
    <attr name="customTextSize" format="dimension" />
  </declare-styleable>
</resources>

第二步:在layout目录下新建布局文件activity_main.xml

特别注意要在外层控件加上这个声明:

格式:xmlns:(你自定义名称)="http://schemas.android.com/apk/(你应用的包名)"


xmlns:xr="http://schemas.android.com/apk/res/com.rong.test"

或者


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

推荐使用第二种

在布局文件中加入这些自定义的属性:


<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:xr="http://schemas.android.com/apk/res/com.rong.test"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:background="@android:color/black"
  android:orientation="vertical" >
  <com.rong.activity.CustomView
    android:layout_width="300dp"
    android:layout_height="300dp"
    android:layout_centerInParent="true"
    android:background="#ff0000"
    xr:customText="自定义控件"
    xr:customTextColor="#000000"
    xr:customTextSize="40sp" />
</RelativeLayout>

第三部继承View重写


package com.rong.activity;
import com.rong.test.R;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Rect;
import android.util.AttributeSet;
import android.view.View;

public class CustomView extends View {
  
  private Paint mPaint;
  
  private Rect mBounds;
  
  private String customText;
  
  private int customTextSize;
  
  private int customTextColor;
  public CustomView(Context context, AttributeSet attrs) {
    super(context, attrs);
    TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.CustomViewStyle);
    // 获取自定义文字
    customText = typedArray.getString(R.styleable.CustomViewStyle_customText);
    // 获取自定义文字大小
    customTextSize = typedArray.getDimensionPixelSize(R.styleable.CustomViewStyle_customTextSize, 28);
    // 或者自定义文字颜色
    customTextColor = typedArray.getColor(R.styleable.CustomViewStyle_customTextColor, Color.WHITE);
    // 要回收这个typedArray对象
    typedArray.recycle();
    initView();
  }
  public void initView() {
    // 初始化画笔
    mPaint = new Paint();
    mPaint.setAntiAlias(true);
    mPaint.setStyle(Paint.Style.FILL);
    mPaint.setColor(customTextColor);
    mPaint.setTextSize(customTextSize);
    // 生成文字区域
    mBounds = new Rect();
  }
  @Override
  protected void onDraw(Canvas canvas) {
    super.onDraw(canvas);
    // 获取文字显示区域mBounds
    mPaint.getTextBounds(customText, 0, customText.length(), mBounds);
    //使文字宽居中显示=控件的宽度/2 -文字的宽度/2
    float helfWidth = getWidth() / 2 - mBounds.width() / 2;
    //使文字高居中显示=控件的宽度/2 +文字的宽度/2
    float helfHeight = getHeight() / 2+mBounds.height()/2;
    //绘制文字
    canvas.drawText(customText, helfWidth, helfHeight, mPaint);
  }
}

运行!

更多关于Android相关内容感兴趣的读者可查看本站专题:《Android开发入门与进阶教程》、《Android基本组件用法总结》、《Android视图View技巧总结》、《Android布局layout技巧总结》及《Android控件用法总结》

希望本文所述对大家Android程序设计有所帮助。

您可能感兴趣的文章:自己实现的android树控件treeviewAndroid之IphoneTreeView带组指示器的ExpandableListView效果Android实现树形层级ListViewAndroid提高之多级树形菜单的实现方法Android设置TextView显示指定个数字符,超过部分显示...(省略号)的方法Android重写TextView实现文字整齐排版的方法(附demo源码下载)Android实现ImageView图片双击放大及缩小Android获取屏幕或View宽度和高度的方法Android中使用TextView实现图文混排的方法Android手势滑动实现ImageView缩放图片大小Android TreeView效果实现方法(附demo源码下载)


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯