android view 属性官方,Android重写View并且自定义属性(二)

通过自定义属性 实现如下效果:

63fbe258651f1ae0a57a47800a33337a.png

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

声明一些自定义属性

第二步:在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"

推荐使用第二种

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

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" >

android:layout_width="300dp"

android:layout_height="300dp"

android:layout_centerInParent="true"

android:background="#ff0000"

xr:customText="自定义控件"

xr:customTextColor="#000000"

xr:customTextSize="40sp" />

第三部继承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;

/**

* 自定义控件

*

* @author 徐荣

*

*/

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);

}

}

Run

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值