Android中自定义一个View的方法详解

Android中自定义一个View的方法详解,第1张

概述本文实例讲述了Android中自定义一个View的方法。分享给大家供大家参考,具体如下:

本文实例讲述了AndroID中自定义一个VIEw的方法。分享给大家供大家参考,具体如下:

AndroID中自定义view的实现比较简单,无非就是继承父类,然后重载方法,即便如此,在实际编码中难免会遇到一些坑,我把自己遇到的一些问题和解决方法总结一下,希望对广大码友们有所帮助。

注意点① 用xml定义Layout时,Root element 最好使用merge

当我们需要继承一个布局比较复杂的VIEwGroup(比较多的是linearLayout、relativeLayout)时,通常会用xml来写布局,然后在自定义的VIEw类中inflate这个定义了layout的xml文件。

首先新建一个名为 MyLayout 的 class 文件,在 init 方法中解析稍后定义的xml文件。

/** * Created by liangfei on 4/14/15. */public class MyLayout extends linearLayout {  public MyLayout(Context context) {    super(context);    init();  }  private voID init() {    setorIEntation(VERTICAL);    VIEw rootVIEw = inflate(getContext(),R.layout.my_layout,this);    ((TextVIEw) rootVIEw.findVIEwByID(R.ID.Title)).setText("MyLayout");    ((TextVIEw) rootVIEw.findVIEwByID(R.ID.desc)).setText("A customized layout");  }}

然后新建一个取名为my_layout的布局文件,并把 Root element 设置成merge。

<?xml version="1.0" enCoding="utf-8"?><merge xmlns:androID="http://schemas.androID.com/apk/res/androID">  <TextVIEw    androID:ID="@+ID/Title"    androID:textSize="16sp"    androID:layout_wIDth="wrap_content"    androID:layout_height="wrap_content" />  <TextVIEw    androID:ID="@+ID/desc"    androID:layout_wIDth="wrap_content"    androID:layout_height="wrap_content" /></merge>

用 AndroID SDK 附带的 Monitor 工具查看一下运行时的布局信息。

最顶层是一个FrameLayout,然后是一个linearLayout,里面有两个TextVIEw,可以看出布局没有冗余。

但是,如果把 Root element 换成 linearLayout,效果会怎么样呢?

<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"  androID:orIEntation="vertical"  androID:layout_wIDth="wrap_content"  androID:layout_height="wrap_content">  <TextVIEw    androID:ID="@+ID/Title"    androID:textSize="16sp"    androID:layout_wIDth="wrap_content"    androID:layout_height="wrap_content" />  <TextVIEw    androID:ID="@+ID/desc"    androID:layout_wIDth="wrap_content"    androID:layout_height="wrap_content" /></linearLayout>

很明显,用 linearLayout 做 Root element 后,布局多了一个层级,成了影响性能的一个因素。

注意点② 重载子类构造函数时要弄清楚父类做了哪些 *** 作

先从我一个惨痛的教训开始,当时我这样自定义了一个button:

/** * Created by liangfei on 4/14/15. */public class Mybutton extends button {  public Mybutton(Context context) {    this(context,null);  }  public Mybutton(Context context,AttributeSet attrs) {    this(context,attrs,0);  }  public Mybutton(Context context,AttributeSet attrs,int defStyleAttr) {    super(context,defStyleAttr);    init();  }}

乍一看貌似没什么问题,构造函数的调用方式都是正确的,但是无论我怎么修改 Mybutton 的属性,显示方式就是不正确。

其实问题就出在button类在构造函数中使用了一个defStyleAttr,而我这种写法会忽略掉这个defStyleAttr - com.androID.internal.R.attr.buttonStyle,稍读源码就知道了。

@RemoteVIEwpublic class button extends TextVIEw {  public button(Context context) {    this(context,null);  }  public button(Context context,com.androID.internal.R.attr.buttonStyle);  }  public button(Context context,int defStyleAttr) {    this(context,defStyleAttr,0);  }  public button(Context context,int defStyleAttr,int defStyleRes) {    super(context,defStyleRes);  }}

后来写代码的时候,我都是看了父类的源码之后才敢这么写,如果不确定就老老实实地写成下面这种形式。

/** * Created by liangfei on 4/14/15. */public class Mybutton extends button {  public Mybutton(Context context) {    super(context);    init();  }  public Mybutton(Context context,AttributeSet attrs) {    super(context,attrs);    init();  }  public Mybutton(Context context,defStyleAttr);    init();  }}

其实,还有很多其他的坑,比如 button 的高度,后面抽时间再总结一下

更多关于AndroID相关内容感兴趣的读者可查看本站专题:《Android视图View技巧总结》、《Android *** 作XML数据技巧总结》、《Android编程之activity *** 作技巧总结》、《Android资源 *** 作技巧汇总》、《Android文件 *** 作技巧汇总》、《Android *** 作SQLite数据库技巧总结》、《Android *** 作json格式数据技巧总结》、《Android数据库 *** 作技巧总结》、《Android编程开发之SD卡 *** 作方法汇总》、《Android开发入门与进阶教程》及《Android控件用法总结》

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

总结

以上是内存溢出为你收集整理的Android中自定义一个View的方法详解全部内容,希望文章能够帮你解决Android中自定义一个View的方法详解所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1148793.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存