android自定义view控件属性,android 自定义View研究(二) — 自定义控件添加属性

前一篇讲到了自定义View,有些时候为了提高复用性,可能需要给 自定义的View添加某些属性,比如 字体大小、字体颜色等等,这一篇就跟大家探讨如何 自定义View并添加属性 。

工程目录结构如下:

0818b9ca8b590ca3270a3433284dd417.png

0818b9ca8b590ca3270a3433284dd417.png

运行效果图:

0818b9ca8b590ca3270a3433284dd417.png

0818b9ca8b590ca3270a3433284dd417.png

1、在values 目录下新建 attrs.xml

2、在 布局文件中对属性进行设置

xmlns:my="http://schemas.android.com/apk/res/com.example.customview02"

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

android:layout_width="match_parent"

android:layout_height="match_parent"

tools:context=".MainActivity" >

android:layout_width="wrap_content"

android:layout_height="wrap_content"

my:text="@string/custom_view"

my:textColor="@color/red"

my:textSize="18sp"

my:background="@drawable/logo"

my:focusable="true"/>

注意:如果使用自定义属性,那么在应用xml文件中需要加上新的schemas,

比如这里是xmlns:my="http://schemas.android.com/apk/res/com.example.customview02" ,其中xmlns后的“my”是自定义的属性的前缀,res后的是我们自定义View所在的包

3、通过TypedArray 获取 属性值

package com.example.customview02;

import android.content.Context;

import android.content.res.TypedArray;

import android.graphics.Bitmap;

import android.graphics.BitmapFactory;

import android.graphics.Canvas;

import android.graphics.Paint;

import android.util.AttributeSet;

import android.view.View;

/**

* 这个是自定义的TextView.

* 至少需要重载构造方法和onDraw方法

* 对于自定义的View如果没有自己独特的属性,可以直接在xml文件中使用就可以了

* 如果含有自己独特的属性,那么就需要在构造函数中获取属性文件attrs.xml中自定义属性的名称

* 并根据需要设定默认值,放在在xml文件中没有定义。

* 如果使用自定义属性,那么在应用xml文件中需要加上新的schemas,

* 比如这里是xmlns:my="http://schemas.android.com/apk/res/com.example.customview02"

* 其中xmlns后的“my”是自定义的属性的前缀,res后的是我们自定义View所在的包

*

* @author Administrator

*

*/

public class MyView extends View {

private Paint mPaint;

private String content = null;

private int resourceId;

public MyView(Context context) {

super(context);

// TODO Auto-generated constructor stub

}

public MyView(Context context, AttributeSet attrs) {

super(context, attrs);

mPaint = new Paint();

//TypedArray是一个用来存放由context.obtainStyledAttributes获得的属性的数组

//在使用完成后,一定要调用recycle方法

//属性的名称是styleable中的名称+“_”+属性名称

TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.MyView);

int textColor = a.getColor(R.styleable.MyView_textColor, 0XFF00FF00); //提供默认值,放置未指定

float textSize = a.getDimensionPixelSize(R.styleable.MyView_textSize, 20); //获取字体大小

content = a.getString(R.styleable.MyView_text);

boolean focusable = a.getBoolean(R.styleable.MyView_focusable, false);

// Drawable drawable = array.getDrawable(R.styleable.MyView_background);

resourceId = a.getResourceId(R.styleable.MyView_background, R.drawable.ic_launcher);

mPaint.setColor(textColor);

mPaint.setTextSize(textSize);

a.recycle(); //一定要调用,否则这次的设定会对下次的使用造成影响

}

@Override

protected void onDraw(Canvas canvas) {

super.onDraw(canvas);

Bitmap mBitmap = BitmapFactory.decodeResource(getResources(), resourceId);

canvas.drawBitmap(mBitmap, 0, 0, mPaint);

canvas.drawText(content, 10, 100, mPaint);

}

}

最后是 MainActivity.java

package com.example.customview02;

import android.app.Activity;

import android.os.Bundle;

public class MainActivity extends Activity {

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

}

}

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值