Android重写View并自定义属性实例分析

 更新时间:2016年02月17日 09:51:29   作者:xurong  
这篇文章主要介绍了Android重写View并自定义属性的方法,结合实例形式较为详细的分析了Android基于重写View实现自定义属性的相关布局与具体技巧,需要的朋友可以参考下

本文实例分析了Android重写View并自定义属性的方法。分享给大家供大家参考,具体如下:

这里通过自定义属性 实现如下图所示效果:

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

声明一些自定义属性

<?xml version="1.0" encoding="utf-8"?>
<resources>
  <declare-styleable name="CustomViewStyle">
    <attr name="customText" format="string" />
    <attr name="customTextColor" format="color" />
    <attr name="customTextSize" format="dimension" />
  </declare-styleable>
</resources>

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

推荐使用第二种

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

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  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" >
  <com.rong.activity.CustomView
    android:layout_width="300dp"
    android:layout_height="300dp"
    android:layout_centerInParent="true"
    android:background="#ff0000"
    xr:customText="自定义控件"
    xr:customTextColor="#000000"
    xr:customTextSize="40sp" />
</RelativeLayout>

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

运行!

更多关于Android相关内容感兴趣的读者可查看本站专题:《Android开发入门与进阶教程》、《Android基本组件用法总结》、《Android视图View技巧总结》、《Android布局layout技巧总结》及《Android控件用法总结

希望本文所述对大家Android程序设计有所帮助。

相关文章

  • Android自定义View模仿QQ讨论组头像效果

    Android自定义View模仿QQ讨论组头像效果

    最近发现QQ讨论组的头像非常不错,正好最近又有时间,所有就动手实践了下,所以下面这篇文章主要给大家介绍了Android自定义View模仿QQ讨论组头像效果的相关资料,文中给出了详细的介绍的示例代码,需要的朋友可以参考学习,下面来一起看看吧。
    2017-04-04
  • Android实现花瓣飘落效果的步骤

    Android实现花瓣飘落效果的步骤

    这篇文章主要介绍了Android实现花瓣飘落效果的步骤,帮助大家更好的理解和学习使用Android开发,感兴趣的朋友可以了解下
    2021-04-04
  • Android开发flow常见API的使用示例详解

    Android开发flow常见API的使用示例详解

    这篇文章主要为大家介绍了Android开发flow常见API的使用示例详解,希望能够帮助大家更好的掌握flow使用,熟练的应用于各种场景,祝大家多多进步,早日升职加薪
    2022-08-08
  • Android SharedPreferences数据存储详解

    Android SharedPreferences数据存储详解

    SharedPreferences是安卓平台上一个轻量级的存储类,用来保存应用的一些常用配置,比如Activity状态,Activity暂停时,将此activity的状态保存到SharedPereferences中;当Activity重载,系统回调方法onSaveInstanceState时,再从SharedPreferences中将值取出
    2022-11-11
  • Compose开发之动画艺术探索及实现示例

    Compose开发之动画艺术探索及实现示例

    这篇文章主要为大家介绍了Compose开发之动画艺术探索及实现示例,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2022-09-09
  • Android中Splash应用启动白屏问题的解决方法

    Android中Splash应用启动白屏问题的解决方法

    这篇文章主要为大家详细介绍了Android中Splash应用启动白屏问题的两种解决方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-02-02
  • Android实现微信聊天语言点击喇叭动画效果

    Android实现微信聊天语言点击喇叭动画效果

    这篇文章主要为大家详细介绍了Android实现微信聊天语言点击喇叭动画效果,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-07-07
  • android书架效果实现原理与代码

    android书架效果实现原理与代码

    以前也模仿者ireader实现了书架的效果,但是那种是使用listview实现的,并不好用,今天介绍android书架效果实现方法
    2013-01-01
  • 配置android开发环境时出现eclipse获取不到ADT的解决方法

    配置android开发环境时出现eclipse获取不到ADT的解决方法

    这篇文章主要介绍了配置android开发环境时出现eclipse获取不到ADT的解决方法,涉及针对开发环境hosts文件域名映射的修改及eclipse配置的修改技巧,具有一定参考借鉴价值,需要的朋友可以参考下
    2015-12-12
  • Android设置默认锁屏壁纸接口的方法

    Android设置默认锁屏壁纸接口的方法

    这篇文章主要介绍了Android默认锁屏壁纸接口的设置方法,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-01-01

最新评论