欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

Android如何自定义视图属性

时间:2020-10-02 10:19:57|栏目:Android代码|点击:

本文实例为大家介绍了Android自定义视图属性的方法,供大家参考,具体内容如下

1. 自定义一个自己的视图类继承自View

public class MyView extends View
{
  public MyView(Context context, AttributeSet attrs)
  {
    super(context, attrs);
    //获取到自定义的属性
    TypedArray ta=context.obtainStyledAttributes(attrs, R.styleable.MyView);
    int color=ta.getColor(R.styleable.MyView_rect_color, 0xffff0000);
    setBackgroundColor(color);
    //必须手动回收ta
    ta.recycle();
  }

  public MyView(Context context)
  {
    super(context);
  }
}

2. 在res/values目录中新建一个attrs.xml文件

<?xml version="1.0" encoding="utf-8"?>
<resources>
  //定义一个declare-styleable标签,在里面设置attr属性
  <declare-styleable name="MyView">
    <attr name="rect_color" format="color"/>
  </declare-styleable>
</resources>

一个attr属性,对应了一个视图属性

3.最后看布局文件中如何利用我们创建的自定义视图并设置其属性

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  //自定义一个MyView的命名空间
  xmlns:gu="http://schemas.android.com/apk/res/com.gu.myrect"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical" >

  <com.gu.myrect.MyView
    android:layout_width="100dp"
    android:layout_height="100dp"
    //根据自定义的命名空间和我们在attrs中设置的属性,自定义属性值
    gu:rect_color="#cc99cc" />
</LinearLayout>

上一篇:Android layoutAnimation详解及应用

栏    目:Android代码

下一篇:Android如何自定义按钮效果

本文标题:Android如何自定义视图属性

本文地址:http://www.codeinn.net/misctech/5958.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有