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

Android自定义View的三种实现方式总结

程序员文章站 2023-12-17 17:56:52
在毕设项目中多处用到自定义控件,一直打算总结一下自定义控件的实现方式,今天就来总结一下吧。在此之前学习了郭霖大神博客上面关于自定义view的几篇博文,感觉受益良多,本文中就...

在毕设项目中多处用到自定义控件,一直打算总结一下自定义控件的实现方式,今天就来总结一下吧。在此之前学习了郭霖大神博客上面关于自定义view的几篇博文,感觉受益良多,本文中就参考了其中的一些内容。

总结来说,自定义控件的实现有三种方式,分别是:组合控件、自绘控件和继承控件。下面将分别对这三种方式进行介绍。

(一)组合控件

组合控件,顾名思义就是将一些小的控件组合起来形成一个新的控件,这些小的控件多是系统自带的控件。比如很多应用中普遍使用的标题栏控件,其实用的就是组合控件,那么下面将通过实现一个简单的标题栏自定义控件来说说组合控件的用法。

1、新建一个android项目,创建自定义标题栏的布局文件title_bar.xml:

<?xml version="1.0" encoding="utf-8"?>
<relativelayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:background="#0000ff" >

  <button
    android:id="@+id/left_btn"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centervertical="true"
    android:layout_margin="5dp"
    android:background="@drawable/back1_64" />

  <textview
    android:id="@+id/title_tv"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerinparent="true"
    android:text="这是标题"
    android:textcolor="#ffffff"
    android:textsize="20sp" />

</relativelayout>

可见这个标题栏控件还是比较简单的,其中在左边有一个返回按钮,背景是一张事先准备好的图片back1_64.png,标题栏中间是标题文字。

2、创建一个类titleview,继承自relativelayout:

public class titleview extends relativelayout {

  // 返回按钮控件
  private button mleftbtn;
  // 标题tv
  private textview mtitletv;

  public titleview(context context, attributeset attrs) {
    super(context, attrs);

    // 加载布局
    layoutinflater.from(context).inflate(r.layout.title_bar, this);

    // 获取控件
    mleftbtn = (button) findviewbyid(r.id.left_btn);
    mtitletv = (textview) findviewbyid(r.id.title_tv);

  }

  // 为左侧返回按钮添加自定义点击事件
  public void setleftbuttonlistener(onclicklistener listener) {
    mleftbtn.setonclicklistener(listener);
  }

  // 设置标题的方法
  public void settitletext(string title) {
    mtitletv.settext(title);
  }
}

在titleview中主要是为自定义的标题栏加载了布局,为返回按钮添加事件监听方法,并提供了设置标题文本的方法。

3、在activity_main.xml中引入自定义的标题栏:

<linearlayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/main_layout"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical" >

  <com.example.test.titleview
    android:id="@+id/title_bar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >
  </com.example.test.titleview>

</linearlayout>

4、在mainactivity中获取自定义的标题栏,并且为返回按钮添加自定义点击事件:

private titleview mtitlebar;
     mtitlebar = (titleview) findviewbyid(r.id.title_bar);

    mtitlebar.setleftbuttonlistener(new onclicklistener() {

      @override
      public void onclick(view v) {
        toast.maketext(mainactivity.this, "点击了返回按钮", toast.length_short)
            .show();
        finish();
      }
    });

5、运行效果如下:

Android自定义View的三种实现方式总结   

这样就用组合的方式实现了自定义标题栏,其实经过更多的组合还可以创建出功能更为复杂的自定义控件,比如自定义搜索栏等。

 (二)自绘控件

自绘控件的内容都是自己绘制出来的,在view的ondraw方法中完成绘制。下面就实现一个简单的计数器,每点击它一次,计数值就加1并显示出来。

1、创建counterview类,继承自view,实现onclicklistener接口:

public class counterview extends view implements onclicklistener {

  // 定义画笔
  private paint mpaint;
  // 用于获取文字的宽和高
  private rect mbounds;
  // 计数值,每点击一次本控件,其值增加1
  private int mcount;

  public counterview(context context, attributeset attrs) {
    super(context, attrs);

    // 初始化画笔、rect
    mpaint = new paint(paint.anti_alias_flag);
    mbounds = new rect();
    // 本控件的点击事件
    setonclicklistener(this);
  }

  @override
  protected void ondraw(canvas canvas) {
    super.ondraw(canvas);

    mpaint.setcolor(color.blue);
    // 绘制一个填充色为蓝色的矩形
    canvas.drawrect(0, 0, getwidth(), getheight(), mpaint);

    mpaint.setcolor(color.yellow);
    mpaint.settextsize(50);
    string text = string.valueof(mcount);
    // 获取文字的宽和高
    mpaint.gettextbounds(text, 0, text.length(), mbounds);
    float textwidth = mbounds.width();
    float textheight = mbounds.height();

    // 绘制字符串
    canvas.drawtext(text, getwidth() / 2 - textwidth / 2, getheight() / 2
        + textheight / 2, mpaint);
  }

  @override
  public void onclick(view v) {
    mcount ++;
    
    // 重绘
    invalidate();
  }

}

2、在activity_main.xml中引入该自定义布局:

<linearlayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/main_layout"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical" >

  <com.example.test.counterview
    android:id="@+id/counter_view"
    android:layout_width="100dp"
    android:layout_height="100dp"
    android:layout_gravity="center_horizontal|top"
    android:layout_margin="20dp" />

</linearlayout>

3、运行效果如下:

Android自定义View的三种实现方式总结

(三)继承控件

就是继承已有的控件,创建新控件,保留继承的父控件的特性,并且还可以引入新特性。下面就以支持横向滑动删除列表项的自定义listview的实现来介绍。

1、创建删除按钮布局delete_btn.xml,这个布局是在横向滑动列表项后显示的:

<?xml version="1.0" encoding="utf-8"?>
<button xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:background="#ff0000"
  android:padding="5dp"
  android:text="删除"
  android:textcolor="#ffffff"
  android:textsize="16sp" >

</button>

2、创建customlistview类,继承自listview,并实现了ontouchlistener和ongesturelistener接口:

public class customlistview extends listview implements ontouchlistener,
    ongesturelistener {

  // 手势动作探测器
  private gesturedetector mgesturedetector;

  // 删除事件监听器
  public interface ondeletelistener {
    void ondelete(int index);
  }

  private ondeletelistener mondeletelistener;

  // 删除按钮
  private view mdeletebtn;

  // 列表项布局
  private viewgroup mitemlayout;

  // 选择的列表项
  private int mselecteditem;

  // 当前删除按钮是否显示出来了
  private boolean isdeleteshown;

  public customlistview(context context, attributeset attrs) {
    super(context, attrs);

    // 创建手势监听器对象
    mgesturedetector = new gesturedetector(getcontext(), this);

    // 监听ontouch事件
    setontouchlistener(this);
  }

  // 设置删除监听事件
  public void setondeletelistener(ondeletelistener listener) {
    mondeletelistener = listener;
  }

  // 触摸监听事件
  @override
  public boolean ontouch(view v, motionevent event) {
    if (isdeleteshown) {
      hidedelete();
      return false;
    } else {
      return mgesturedetector.ontouchevent(event);
    }
  }

  @override
  public boolean ondown(motionevent e) {
    if (!isdeleteshown) {
      mselecteditem = pointtoposition((int) e.getx(), (int) e.gety());
    }
    return false;
  }

  @override
  public boolean onfling(motionevent e1, motionevent e2, float velocityx,
      float velocityy) {
    // 如果当前删除按钮没有显示出来,并且x方向滑动的速度大于y方向的滑动速度
    if (!isdeleteshown && math.abs(velocityx) > math.abs(velocityy)) {
      mdeletebtn = layoutinflater.from(getcontext()).inflate(
          r.layout.delete_btn, null);

      mdeletebtn.setonclicklistener(new onclicklistener() {

        @override
        public void onclick(view v) {
          mitemlayout.removeview(mdeletebtn);
          mdeletebtn = null;
          isdeleteshown = false;
          mondeletelistener.ondelete(mselecteditem);
        }
      });

      mitemlayout = (viewgroup) getchildat(mselecteditem
          - getfirstvisibleposition());

      relativelayout.layoutparams params = new relativelayout.layoutparams(
          layoutparams.wrap_content, layoutparams.wrap_content);
      params.addrule(relativelayout.align_parent_right);
      params.addrule(relativelayout.center_vertical);

      mitemlayout.addview(mdeletebtn, params);
      isdeleteshown = true;
    }

    return false;
  }

  // 隐藏删除按钮
  public void hidedelete() {
    mitemlayout.removeview(mdeletebtn);
    mdeletebtn = null;
    isdeleteshown = false;
  }

  public boolean isdeleteshown() {
    return isdeleteshown;
  }
  
  /**
   * 后面几个方法本例中没有用到
   */
  @override
  public void onshowpress(motionevent e) {

  }

  @override
  public boolean onsingletapup(motionevent e) {
    return false;
  }

  @override
  public boolean onscroll(motionevent e1, motionevent e2, float distancex,
      float distancey) {
    return false;
  }

  @override
  public void onlongpress(motionevent e) {

  }

}

3、定义列表项布局custom_listview_item.xml,它的结构很简单,只包含了一个textview:

<?xml version="1.0" encoding="utf-8"?>
<relativelayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:descendantfocusability="blocksdescendants" >

  <textview
    android:id="@+id/content_tv"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centervertical="true"
    android:layout_margin="30dp"
    android:gravity="center_vertical|left" />

</relativelayout>

4、定义适配器类customlistviewadapter,继承自arrayadapter<string>:

public class customlistviewadapter extends arrayadapter<string> {

  public customlistviewadapter(context context, int textviewresourceid,
      list<string> objects) {
    super(context, textviewresourceid, objects);
  }

  @override
  public view getview(int position, view convertview, viewgroup parent) {
    view view;

    if (convertview == null) {
      view = layoutinflater.from(getcontext()).inflate(
          r.layout.custom_listview_item, null);
    } else {
      view = convertview;
    }

    textview contenttv = (textview) view.findviewbyid(r.id.content_tv);
    contenttv.settext(getitem(position));

    return view;
  }

}

5、在activity_main.xml中引入自定义的listview:

<linearlayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/main_layout"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical" >

  <com.example.test.customlistview
    android:id="@+id/custom_lv"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />

</linearlayout>

6、在mainactivity中对列表做初始化、设置列表项删除按钮点击事件等处理:

public class mainactivity extends activity {

  // 自定义lv
  private customlistview mcustomlv;
  // 自定义适配器
  private customlistviewadapter madapter;
  // 内容列表
  private list<string> contentlist = new arraylist<string>();

  @override
  protected void oncreate(bundle savedinstancestate) {
    super.oncreate(savedinstancestate);
    requestwindowfeature(window.feature_no_title);
    setcontentview(r.layout.activity_main);

    initcontentlist();

    mcustomlv = (customlistview) findviewbyid(r.id.custom_lv);
    mcustomlv.setondeletelistener(new ondeletelistener() {

      @override
      public void ondelete(int index) {
        contentlist.remove(index);
        madapter.notifydatasetchanged();
      }
    });

    madapter = new customlistviewadapter(this, 0, contentlist);
    mcustomlv.setadapter(madapter);
  }

  // 初始化内容列表
  private void initcontentlist() {
    for (int i = 0; i < 20; i++) {
      contentlist.add("内容项" + i);
    }
  }

  @override
  public void onbackpressed() {
    if (mcustomlv.isdeleteshown()) {
      mcustomlv.hidedelete();
      return;
    }
    super.onbackpressed();
  }

}

7、运行效果如下:

Android自定义View的三种实现方式总结

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

上一篇:

下一篇: