200字范文,内容丰富有趣,生活中的好帮手!
200字范文 > android获取自定义属性 android 自定义控件中获取属性的三种方式(转)

android获取自定义属性 android 自定义控件中获取属性的三种方式(转)

时间:2020-03-17 08:11:28

相关推荐

android获取自定义属性 android 自定义控件中获取属性的三种方式(转)

第一种方法,直接设置属性值,通过attrs.getAttributeResourceValue拿到这个属性值。

(1)在xml文件中设置属性值

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:text="@string/smile1"

iconSrc="@drawable/smile"/>

(2)在构造函数中拿到这个值

public IconTextView(Context context, AttributeSet attrs) {

super(context, attrs);

resourceID = attrs.getAttributeResourceValue(null, "iconSrc", 0);

if(resourceID > 0) {

bitmap = BitmapFactory.decodeResource(getResources(), resourceID);

}

}

第二种方法,使用自己的命名空间

(1)注意在xml文件中,需要声明一个命名空间,形式为http:// + 这个VIEW的包名

xmlns:mobile="http://com.example.activity"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:orientation="vertical" >

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:text="@string/smile1"

mobile:iconSrc="@drawable/smile"/>

(2)通过attrs.getAttributeResourceValue,其中第一个参数为命名空间。

//命名空间

privatefinalStringnamespace="http://com.example.activity"

public IconTextView(Context context, AttributeSet attrs) {

super(context, attrs);

resourceID = attrs.getAttributeResourceValue(namespace, "iconSrc", 0);

// TypedArray array = context.obtainStyledAttributes(attrs, R.styleable.IconTextView);

// resourceID = array.getResourceId(R.styleable.IconTextView_iconSrc, 0);

if(resourceID > 0) {

bitmap = BitmapFactory.decodeResource(getResources(), resourceID);

}

}

第三种方法,通过自定义attrs.xml来实现

(1)自定义一个attrs.xml文件

(2)在xml文件中使用这一属性,注意此时命名空间的书写规范。

xmlns:mobile="/apk/res/com.example.activity"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:orientation="vertical" >

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:text="@string/smile1"

mobile:iconSrc="@drawable/smile"/>

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:text="@string/smile2"

android:textSize="24dp"

mobile:iconSrc="@drawable/smile"/>

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:text="@string/smile3"

android:textSize="36dp"

mobile:iconSrc="@drawable/smile"/>

(3)在代码中使用context.obtainStyledAttributes获得属性值

package com.example.activity;

import android.content.Context;

import android.content.res.TypedArray;

import android.graphics.Bitmap;

import android.graphics.BitmapFactory;

import android.graphics.Canvas;

import android.graphics.Rect;

import android.util.AttributeSet;

import android.widget.TextView;

public class IconTextView extends TextView {

//命名空间

private final String namespace = "http://com.example.activity";

//资源ID

private int resourceID = 0;

private Bitmap bitmap;

public IconTextView(Context context, AttributeSet attrs) {

super(context, attrs);

TypedArray array = context.obtainStyledAttributes(attrs, R.styleable.IconTextView);

resourceID = array.getResourceId(R.styleable.IconTextView_iconSrc, 0);

if(resourceID > 0) {

bitmap = BitmapFactory.decodeResource(getResources(), resourceID);

}

}

@Override

public void onDraw(Canvas canvas) {

if (bitmap != null) {

Rect src = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight());

Rect target = new Rect();

int textHeight = (int)getTextSize();

target.left = 0;

target.top =(int)(getMeasuredHeight() - getTextSize()) / 2 + 1;

target.bottom = target.top + textHeight;

target.right = (int)(textHeight * (bitmap.getWidth() / (float)bitmap.getHeight()));

canvas.drawBitmap(bitmap, src, target, getPaint());

canvas.translate(target.right + 2, 0);

}

super.onDraw(canvas);

}

}

【Struts2】Struts2获取session的三种方式

1.Map map = ActionContext.getContext().getSession(); 2.HttpSession session = S ...

android中解析文件的三种方式

android中解析文件的三种方式 好久没有动手写点东西了,最近在研究android的相关技术,现在就android中解析文件的三种方式做以下总结.其主要有:SAX(Simple API fo ...

Struts2(四.注册时检查用户名是否存在及Action获取数据的三种方式)

一.功能 1.用户注册页面

Struts中的数据处理的三种方式

Struts中的数据处理的三种方式: public class DataAction extends ActionSupport{ @Override public String execute() ...

OpenCV4Android释疑: 透析Android以JNI调OpenCV的三种方式(让OpenCVManager永不困扰)

OpenCV4Android释疑: 透析Android以JNI调OpenCV的三种方式(让OpenCVManager永不困扰) 前文曾详细探讨了关于OpenCV的使用,原本以为天下已太平.但不断有人反 ...

JS中事件绑定的三种方式

以下是搜集的在JS中事件绑定的三种方式. 1. HTML onclick attribute

一道经典的C++结构体的题目

题目描述: 有10个学生,每个学生的数据包括学号.姓名.英语.数学.物理三门课的成绩,从键盘输入10个学生数据,要求打印出3门课程的总平均成绩,以及最高分的学生的数据(包括学号,姓名,3门课的平均成绩 ...

CrashMe分析教程1 - BreakPoint

首先,谢谢Robert Kuster为我们提供了这么好的CrashMe项目.很多人想寻找一个CrashMe分析的教程, 我也想要, 但是似乎网络里没有, 所以我就决定用业余时间写一个小系列来共享 ...

PHP7类型约束

在PHP7之前,函数和类方法不需要声明变量类型,任何数据都可以被传递和返回,导致几乎大部分的调用操作都要判断返回的数据类型是否合格. 为了解决这个问题,PHP7引入了类型声明. 目前有两类变量可以声明 ...

java关键字保留字

Here is a list of keywords in the Java programming language. You cannot use any of the following as ...

pyspider和pyquery总结

1.参考 pyspider作者官网: pyspider 爬虫教程(一):HTML 和 CSS 选择器 pyspider 爬虫教程(二):AJAX 和 HTTP pyspider 爬虫教程(三):使用 ...

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。