欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android App中自定义View视图的实例教程

程序员文章站 2024-03-01 21:29:10
一、基础 很多的android入门程序猿来说对于android自定义view,可能都是比较恐惧的,但是这又是高手进阶的必经之路,所有准备在自定义view上面花一些功夫,多...

一、基础
很多的android入门程序猿来说对于android自定义view,可能都是比较恐惧的,但是这又是高手进阶的必经之路,所有准备在自定义view上面花一些功夫,多写一些文章。先总结下自定义view的步骤:
1、自定义view的属性
2、在view的构造方法中获得我们自定义的属性
3、重写onmesure
4、重写ondraw
我把3用[]标出了,所以说3不一定是必须的,当然了大部分情况下还是需要重写的。

1、自定义view的属性,首先在res/values/  下建立一个attrs.xml , 在里面定义我们的属性和声明我们的整个样式。
 

<?xml version="1.0" encoding="utf-8"?> 
<resources> 
 
  <attr name="titletext" format="string" /> 
  <attr name="titletextcolor" format="color" /> 
  <attr name="titletextsize" format="dimension" /> 
 
  <declare-styleable name="customtitleview"> 
    <attr name="titletext" /> 
    <attr name="titletextcolor" /> 
    <attr name="titletextsize" /> 
  </declare-styleable> 
 
</resources> 


我们定义了字体,字体颜色,字体大小3个属性,format是值该属性的取值类型:
一共有:string,color,demension,integer,enum,reference,float,boolean,fraction,flag;不清楚的可以google一把。
然后在布局中声明我们的自定义view

<relativelayout xmlns:android="http://schemas.android.com/apk/res/android" 
  xmlns:tools="http://schemas.android.com/tools" 
  xmlns:custom="http://schemas.android.com/apk/res/com.example.customview01" 
  android:layout_width="match_parent" 
  android:layout_height="match_parent" > 
 
  <com.example.customview01.view.customtitleview 
    android:layout_width="200dp" 
    android:layout_height="100dp" 
    custom:titletext="3712" 
    custom:titletextcolor="#ff0000" 
    custom:titletextsize="40sp" /> 
 
</relativelayout> 

一定要引入 xmlns:custom="http://schemas.android.com/apk/res/com.example.customview01"我们的命名空间,后面的包路径指的是项目的package

2、在view的构造方法中,获得我们的自定义的样式 

/** 
   * 文本 
   */ 
  private string mtitletext; 
  /** 
   * 文本的颜色 
   */ 
  private int mtitletextcolor; 
  /** 
   * 文本的大小 
   */ 
  private int mtitletextsize; 
 
  /** 
   * 绘制时控制文本绘制的范围 
   */ 
  private rect mbound; 
  private paint mpaint; 
 
  public customtitleview(context context, attributeset attrs) 
  { 
    this(context, attrs, 0); 
  } 
 
  public customtitleview(context context) 
  { 
    this(context, null); 
  } 
 
  /** 
   * 获得我自定义的样式属性 
   * 
   * @param context 
   * @param attrs 
   * @param defstyle 
   */ 
  public customtitleview(context context, attributeset attrs, int defstyle) 
  { 
    super(context, attrs, defstyle); 
    /** 
     * 获得我们所定义的自定义样式属性 
     */ 
    typedarray a = context.gettheme().obtainstyledattributes(attrs, r.styleable.customtitleview, defstyle, 0); 
    int n = a.getindexcount(); 
    for (int i = 0; i < n; i++) 
    { 
      int attr = a.getindex(i); 
      switch (attr) 
      { 
      case r.styleable.customtitleview_titletext: 
        mtitletext = a.getstring(attr); 
        break; 
      case r.styleable.customtitleview_titletextcolor: 
        // 默认颜色设置为黑色 
        mtitletextcolor = a.getcolor(attr, color.black); 
        break; 
      case r.styleable.customtitleview_titletextsize: 
        // 默认设置为16sp,typevalue也可以把sp转化为px 
        mtitletextsize = a.getdimensionpixelsize(attr, (int) typedvalue.applydimension( 
            typedvalue.complex_unit_sp, 16, getresources().getdisplaymetrics())); 
        break; 
 
      } 
 
    } 
    a.recycle(); 
 
    /** 
     * 获得绘制文本的宽和高 
     */ 
    mpaint = new paint(); 
    mpaint.settextsize(mtitletextsize); 
    // mpaint.setcolor(mtitletextcolor); 
    mbound = new rect(); 
    mpaint.gettextbounds(mtitletext, 0, mtitletext.length(), mbound); 
 
  } 

我们重写了3个构造方法,默认的布局文件调用的是两个参数的构造方法,所以记得让所有的构造调用我们的三个参数的构造,我们在三个参数的构造中获得自定义属性。
3、我们重写ondraw,onmesure调用系统提供的: 

@override 
  protected void onmeasure(int widthmeasurespec, int heightmeasurespec) 
  { 
    super.onmeasure(widthmeasurespec, heightmeasurespec); 
  } 
 
  @override 
  protected void ondraw(canvas canvas) 
  { 
    mpaint.setcolor(color.yellow); 
    canvas.drawrect(0, 0, getmeasuredwidth(), getmeasuredheight(), mpaint); 
 
    mpaint.setcolor(mtitletextcolor); 
    canvas.drawtext(mtitletext, getwidth() / 2 - mbound.width() / 2, getheight() / 2 + mbound.height() / 2, mpaint); 
  } 

此时的效果是:

Android App中自定义View视图的实例教程

是不是觉得还不错,基本已经实现了自定义view。但是此时如果我们把布局文件的宽和高写成wrap_content,会发现效果并不是我们的预期:

Android App中自定义View视图的实例教程

系统帮我们测量的高度和宽度都是match_parnet,当我们设置明确的宽度和高度时,系统帮我们测量的结果就是我们设置的结果,当我们设置为wrap_content,或者match_parent系统帮我们测量的结果就是match_parent的长度。
所以,当设置了wrap_content时,我们需要自己进行测量,即重写onmesure方法”:
重写之前先了解measurespec的specmode,一共三种类型:
exactly:一般是设置了明确的值或者是match_parent
at_most:表示子布局限制在一个最大值内,一般为warp_content
unspecified:表示子布局想要多大就多大,很少使用
下面是我们重写onmeasure代码:

@override 
protected void onmeasure(int widthmeasurespec, int heightmeasurespec) 
{ 
  int widthmode = measurespec.getmode(widthmeasurespec); 
  int widthsize = measurespec.getsize(widthmeasurespec); 
  int heightmode = measurespec.getmode(heightmeasurespec); 
  int heightsize = measurespec.getsize(heightmeasurespec); 
  int width; 
  int height ; 
  if (widthmode == measurespec.exactly) 
  { 
    width = widthsize; 
  } else 
  { 
    mpaint.settextsize(mtitletextsize); 
    mpaint.gettextbounds(mtitle, 0, mtitle.length(), mbounds); 
    float textwidth = mbounds.width(); 
    int desired = (int) (getpaddingleft() + textwidth + getpaddingright()); 
    width = desired; 
  } 
 
  if (heightmode == measurespec.exactly) 
  { 
    height = heightsize; 
  } else 
  { 
    mpaint.settextsize(mtitletextsize); 
    mpaint.gettextbounds(mtitle, 0, mtitle.length(), mbounds); 
    float textheight = mbounds.height(); 
    int desired = (int) (getpaddingtop() + textheight + getpaddingbottom()); 
    height = desired; 
  } 
   
   
 
  setmeasureddimension(width, height); 
} 

现在我们修改下布局文件:

<relativelayout xmlns:android="http://schemas.android.com/apk/res/android" 
  xmlns:tools="http://schemas.android.com/tools" 
  xmlns:custom="http://schemas.android.com/apk/res/com.example.customview01" 
  android:layout_width="match_parent" 
  android:layout_height="match_parent" > 
 
  <com.example.customview01.view.customtitleview 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    custom:titletext="3712" 
    android:padding="10dp" 
    custom:titletextcolor="#ff0000" 
    android:layout_centerinparent="true" 
    custom:titletextsize="40sp" /> 
 
</relativelayout> 

现在的效果是:

Android App中自定义View视图的实例教程

完全复合我们的预期,现在我们可以对高度、宽度进行随便的设置了,基本可以满足我们的需求。
当然了,这样下来我们这个自定义view与textview相比岂不是没什么优势,所有我们觉得给自定义view添加一个事件:
在构造中添加:

this.setonclicklistener(new onclicklistener() 
    { 
 
      @override 
      public void onclick(view v) 
      { 
        mtitletext = randomtext(); 
        postinvalidate(); 
      } 
 
    }); 

 
private string randomtext() 
  { 
    random random = new random(); 
    set<integer> set = new hashset<integer>(); 
    while (set.size() < 4) 
    { 
      int randomint = random.nextint(10); 
      set.add(randomint); 
    } 
    stringbuffer sb = new stringbuffer(); 
    for (integer i : set) 
    { 
      sb.append("" + i); 
    } 
 
    return sb.tostring(); 
  } 

下面再来运行:

Android App中自定义View视图的实例教程

我们添加了一个点击事件,每次让它随机生成一个4位的随机数,有兴趣的可以在ondraw中添加一点噪点,然后改写为验证码,是不是感觉很不错。

进阶

前面已经介绍过一个自定义view的基础的例子,下面给大家带来一个稍微复杂点的例子。
自定义view显示一张图片,下面包含图片的文本介绍,类似相片介绍什么的,不过不重要,主要是学习自定义view的用法么。
直接切入正题:
1、在res/values/attr.xml
 

<?xml version="1.0" encoding="utf-8"?> 
<resources> 
 
  <attr name="titletext" format="string" /> 
  <attr name="titletextsize" format="dimension" /> 
  <attr name="titletextcolor" format="color" /> 
  <attr name="image" format="reference" /> 
  <attr name="imagescaletype"> 
    <enum name="fillxy" value="0" /> 
    <enum name="center" value="1" /> 
  </attr> 
 
  <declare-styleable name="customimageview"> 
    <attr name="titletext" /> 
    <attr name="titletextsize" /> 
    <attr name="titletextcolor" /> 
    <attr name="image" /> 
    <attr name="imagescaletype" /> 
  </declare-styleable> 
 
</resources> 

2、在构造中获得我们的自定义属性:

/** 
   * 初始化所特有自定义类型 
   * 
   * @param context 
   * @param attrs 
   * @param defstyle 
   */ 
  public customimageview(context context, attributeset attrs, int defstyle) 
  { 
    super(context, attrs, defstyle); 
 
    typedarray a = context.gettheme().obtainstyledattributes(attrs, r.styleable.customimageview, defstyle, 0); 
 
    int n = a.getindexcount(); 
 
    for (int i = 0; i < n; i++) 
    { 
      int attr = a.getindex(i); 
 
      switch (attr) 
      { 
      case r.styleable.customimageview_image: 
        mimage = bitmapfactory.decoderesource(getresources(), a.getresourceid(attr, 0)); 
        break; 
      case r.styleable.customimageview_imagescaletype: 
        mimagescale = a.getint(attr, 0); 
        break; 
      case r.styleable.customimageview_titletext: 
        mtitle = a.getstring(attr); 
        break; 
      case r.styleable.customimageview_titletextcolor: 
        mtextcolor = a.getcolor(attr, color.black); 
        break; 
      case r.styleable.customimageview_titletextsize: 
        mtextsize = a.getdimensionpixelsize(attr, (int) typedvalue.applydimension(typedvalue.complex_unit_sp, 
            16, getresources().getdisplaymetrics())); 
        break; 
 
      } 
    } 
    a.recycle(); 
    rect = new rect(); 
    mpaint = new paint(); 
    mtextbound = new rect(); 
    mpaint.settextsize(mtextsize); 
    // 计算了描绘字体需要的范围 
    mpaint.gettextbounds(mtitle, 0, mtitle.length(), mtextbound); 
 
  } 

3、重写onmeasure

@override 
protected void onmeasure(int widthmeasurespec, int heightmeasurespec) 
{ 
  // super.onmeasure(widthmeasurespec, heightmeasurespec); 
 
  /** 
   * 设置宽度 
   */ 
  int specmode = measurespec.getmode(widthmeasurespec); 
  int specsize = measurespec.getsize(widthmeasurespec); 
 
  if (specmode == measurespec.exactly)// match_parent , accurate 
  { 
    log.e("xxx", "exactly"); 
    mwidth = specsize; 
  } else 
  { 
    // 由图片决定的宽 
    int desirebyimg = getpaddingleft() + getpaddingright() + mimage.getwidth(); 
    // 由字体决定的宽 
    int desirebytitle = getpaddingleft() + getpaddingright() + mtextbound.width(); 
 
    if (specmode == measurespec.at_most)// wrap_content 
    { 
      int desire = math.max(desirebyimg, desirebytitle); 
      mwidth = math.min(desire, specsize); 
      log.e("xxx", "at_most"); 
    } 
  } 
 
  /*** 
   * 设置高度 
   */ 
 
  specmode = measurespec.getmode(heightmeasurespec); 
  specsize = measurespec.getsize(heightmeasurespec); 
  if (specmode == measurespec.exactly)// match_parent , accurate 
  { 
    mheight = specsize; 
  } else 
  { 
    int desire = getpaddingtop() + getpaddingbottom() + mimage.getheight() + mtextbound.height(); 
    if (specmode == measurespec.at_most)// wrap_content 
    { 
      mheight = math.min(desire, specsize); 
    } 
  } 
  setmeasureddimension(mwidth, mheight); 
 
} 

4、重写ondraw

@override 
  protected void ondraw(canvas canvas) 
  { 
    // super.ondraw(canvas); 
    /** 
     * 边框 
     */ 
    mpaint.setstrokewidth(4); 
    mpaint.setstyle(paint.style.stroke); 
    mpaint.setcolor(color.cyan); 
    canvas.drawrect(0, 0, getmeasuredwidth(), getmeasuredheight(), mpaint); 
 
    rect.left = getpaddingleft(); 
    rect.right = mwidth - getpaddingright(); 
    rect.top = getpaddingtop(); 
    rect.bottom = mheight - getpaddingbottom(); 
 
    mpaint.setcolor(mtextcolor); 
    mpaint.setstyle(style.fill); 
    /** 
     * 当前设置的宽度小于字体需要的宽度,将字体改为xxx... 
     */ 
    if (mtextbound.width() > mwidth) 
    { 
      textpaint paint = new textpaint(mpaint); 
      string msg = textutils.ellipsize(mtitle, paint, (float) mwidth - getpaddingleft() - getpaddingright(), 
          textutils.truncateat.end).tostring(); 
      canvas.drawtext(msg, getpaddingleft(), mheight - getpaddingbottom(), mpaint); 
 
    } else 
    { 
      //正常情况,将字体居中 
      canvas.drawtext(mtitle, mwidth / 2 - mtextbound.width() * 1.0f / 2, mheight - getpaddingbottom(), mpaint); 
    } 
 
    //取消使用掉的快 
    rect.bottom -= mtextbound.height(); 
 
    if (mimagescale == image_scale_fitxy) 
    { 
      canvas.drawbitmap(mimage, null, rect, mpaint); 
    } else 
    { 
      //计算居中的矩形范围 
      rect.left = mwidth / 2 - mimage.getwidth() / 2; 
      rect.right = mwidth / 2 + mimage.getwidth() / 2; 
      rect.top = (mheight - mtextbound.height()) / 2 - mimage.getheight() / 2; 
      rect.bottom = (mheight - mtextbound.height()) / 2 + mimage.getheight() / 2; 
 
      canvas.drawbitmap(mimage, null, rect, mpaint); 
    } 
 
  } 

代码,结合注释和基础部分view的使用,应该可以看懂,不明白的留言。下面我们引入我们的自定义view:

<linearlayout xmlns:android="http://schemas.android.com/apk/res/android" 
  xmlns:tools="http://schemas.android.com/tools" 
  xmlns:zhy="http://schemas.android.com/apk/res/com.zhy.customview02" 
  android:layout_width="match_parent" 
  android:layout_height="match_parent" 
  android:orientation="vertical" > 
 
  <com.zhy.customview02.view.customimageview 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_margin="10dp" 
    android:padding="10dp" 
    zhy:image="@drawable/ic_launcher" 
    zhy:imagescaletype="center" 
    zhy:titletext="hello andorid ! " 
    zhy:titletextcolor="#ff0000" 
    zhy:titletextsize="30sp" /> 
 
  <com.zhy.customview02.view.customimageview 
    android:layout_width="100dp" 
    android:layout_height="wrap_content" 
    android:layout_margin="10dp" 
    android:padding="10dp" 
    zhy:image="@drawable/ic_launcher" 
    zhy:imagescaletype="center" 
    zhy:titletext="helloworldwelcome" 
    zhy:titletextcolor="#00ff00" 
    zhy:titletextsize="20sp" /> 
 
  <com.zhy.customview02.view.customimageview 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_margin="10dp" 
    android:padding="10dp" 
    zhy:image="@drawable/lmj" 
    zhy:imagescaletype="center" 
    zhy:titletext="妹子~" 
    zhy:titletextcolor="#ff0000" 
    zhy:titletextsize="12sp" /> 
 
</linearlayout> 

我特意让显示出现3中情况:
1、字体的宽度大于图片,且view宽度设置为wrap_content
2、view宽度设置为精确值,字体的长度大于此宽度
3、图片的宽度大于字体,且view宽度设置为wrap_content
看看显示效果:

Android App中自定义View视图的实例教程

怎么样,对于这三种情况所展示的效果都还不错吧。