码迷,mamicode.com
首页 > 移动开发 > 详细

Android读取自定义View属性

时间:2014-10-10 11:41:54      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   color   io   ar   java   for   

Android读取自定义View属性

attrs.xml :

<?xml version="1.0" encoding="utf-8"?>
<resources>
   
    <declare-styleable name="MyView">
        <attr name="MyViewColor" format="color"/>
    </declare-styleable>
   
</resources>

activity_main.xml :

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:fab="http://schemas.android.com/apk/res-auto"
    android:background="@color/background"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <com.my.MyView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        fab:MyViewColor="@color/pink"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="16dp"/>
</RelativeLayout>

 

MyView.java :

public MyView(Context context, AttributeSet attrs) {
    super(context, attrs, defStyle);
    

    if (attrs!= null) {
      TypedArray attr = context.obtainStyledAttributes(attrs, R.styleable.MyView, 0, 0);
      if (attr != null) {
        try {
          mMyViewColor = attr.getColor(R.styleable.MyViewColor, getColor(android.R.color.white));
       
        } finally {
          attr.recycle();
        }
      }

  }

Android读取自定义View属性

标签:android   style   blog   http   color   io   ar   java   for   

原文地址:http://www.cnblogs.com/l2rf/p/4015222.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!