Android自定义控件之创建可复用的组合控件

前面已学习了一种自定义控件的实现,是Andriod 自定义控件之音频条,还没学习的同学可以学习下,学习了的同学也要去温习下,一定要自己完全的掌握了,再继续学习,贪多嚼不烂可不是好的学习方法,我们争取学习了一种技术就会一种技术,而且不光看了就算了,最好的方法就是看完我自己再练习下,再扩展下,在原来的基础上在添加一些东西,比如,增加一些功能实现等等。

今天我们打算学习下另外一种自定义控件,就是创建可重复使用的组合控件,那么问题来了:

什么是可重复使用?
就是在应用中,可以在多个地方共同使用一套代码。这样不仅能减少我们的工作量,而且还能保持应用风格的一致,这种应用最多最直接的体现就是统一风格样式的标题栏。

那什么又是组合控件呢?
组合控件,顾名思义就是多个控件组合在一起,相互协作共同完成某些特定的功能。

下面我们就针对app应用中风格统一的标题栏来开始我们的学习。

首先,既然是一组组合的控件,那就必须有一个可以来包含这些控件的容器,我们所接触的可以存放控件的容器很多,比如LinearLayout、RelativeLayout等等多种Layout,今天我们就选择RelativeLayout来做我们的容器。和以前一样,我们先定义一个CompositeViews类来继承RelativeLayout类,并重写它的构造方法,代码如下:

public class CompositeViews extends RelativeLayout{

 public CompositeViews(Context context) {
  this(context,null);
 }
 public CompositeViews(Context context, AttributeSet attrs) {
  this(context, attrs,0);
 }
 public CompositeViews(Context context, AttributeSet attrs, int defStyleAttr) {
  super(context, attrs, defStyleAttr);
 }
 }

接下来,我们再定义三个TextView控件,分别是mLefeText,mRightText,textTitle用来显示“返回”,“搜索”以及“标题”并且使用LayoutParams规定它们在容器里面的对齐方式。请看代码:

public class CompositeViews extends RelativeLayout{
 private TextView mLefeText;
 private TextView mRightText;
 private TextView textTitle;
 private LayoutParams leftLayoutParams;
 private LayoutParams ridhtLayoutParams;
 private LayoutParams titleLayoutParams;

 public CompositeViews(Context context) {
  this(context,null);
 }
 public CompositeViews(Context context, AttributeSet attrs) {
  this(context, attrs,0);
 }
 public CompositeViews(Context context, AttributeSet attrs, int defStyleAttr) {
  super(context, attrs, defStyleAttr);
  initView(context);
 }

initView(context)方法中是用来初始化三个组合控件的,请看:

 private void initView(Context context) {
  mLefeText = new TextView(context);
  mRightText = new TextView(context);
  textTitle = new TextView(context);
  /*
   * 左按钮位置
   */
  leftLayoutParams = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
  leftLayoutParams.addRule(RelativeLayout.ALIGN_PARENT_LEFT,TRUE);
  mLefeText.setText("返回");
  mLefeText.setTextSize(22);
  /*
   * 右按钮位置
   */
  ridhtLayoutParams = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
  ridhtLayoutParams.addRule(RelativeLayout.ALIGN_PARENT_RIGHT,TRUE);
  mRightText.setText("搜索");
  mRightText.setTextSize(22);
  /*
   * 中间标题位置
   */
  titleLayoutParams = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
  titleLayoutParams.addRule(RelativeLayout.CENTER_IN_PARENT,TRUE);
  textTitle.setText("这是一个标题");
  textTitle.setTextSize(22);
 }

ok,以上的代码已经实现了组合控件的显示和对齐方式,我们把定义的View添加到布局文件中并在Activity加载吧

activity_main.xml文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:custom="http://schemas.android.com/apk/res-auto"
 android:layout_width="match_parent"
 android:background="#999999"
 android:layout_height="wrap_content"
 android:orientation="vertical">

 <com.sanhuimusic.mycustomview.view.CompositeViews
  android:id="@+id/topBar"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  />
</LinearLayout>

MainActivity:

public class MainActivity extends AppCompatActivity{
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
 }
}

我们先来运行看下结果

ok,已显示出来了,但是相信大家也看出来了,这上面的代码中,各个控件中的属性是都是我们固定写死的,既然我们是创建可服用的控件,固定写死的东西肯定是不可取的,那么我们怎么可以灵活地获取控件的属性,以至于能达到复用呢?

这就必须要接触另外一种技术了,就是自定义属性。用我们自定义的属于可以在每次使用我们定义的控件时为其分配属性即可。下面我们来学习下自定义属性。

自定义属性其实也是相当的简单,首先,我们现在资源文件res下values目录下新建一个attrs.xml文件(eclipse自带,as自建),新建的attrs.xml是一个包含如下代码的文件:

<?xml version="1.0" encoding="utf-8"?>
<resources>

</resources>

在resources中有各种属性供我们使用,同学们可以自己看下。根据我们现在的需求,我们选择使用declare-styleable来声明我们的属性集,然后为其定义特有的name属性,这个name是供我们在使用自定义属性时,通过它可以查找到里面的所有属性。请看如下代码:

<?xml version="1.0" encoding="utf-8"?>
<resources>
 <declare-styleable name="CompositeViews">
  <attr name="titleText" format="string"/>
  <attr name="titleTextSize" format="dimension"/>
  <attr name="titleColor" format="color"/>
  <attr name="titleBackground" format="color|reference"/>

  <attr name="leftTextColor" format="color"/>
  <attr name="leftBackground" format="color|reference"/>
  <attr name="leftText" format="string"/>
  <attr name="leftTextSize" format="dimension"/>

  <attr name="rightTextColor" format="color"/>
  <attr name="rightBackground" format="color|reference"/>
  <attr name="rightText" format="string"/>
  <attr name="rightTextSize" format="dimension"/>
 </declare-styleable>

</resources>

单独拿一行属性来解析下它所代表的含义:如

好了,自定义属性我们已学习完毕,那么该怎么使用我们自己定义的属性呢?其实也很简单,在我们的activity_main.xml文件中直接使用我们定义的属性就可以了,但是在使用是之前必须在指定引用第三方控件的命名空间,在跟布局文件中添加如下一行代码:

xmlns:custom="http://schemas.android.com/apk/res-auto"

custom是我们第三方命名空间的名字,可以任意命名,我们在使用自定义属性时必须以它开头。请看代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:custom="http://schemas.android.com/apk/res-auto"
 android:layout_width="match_parent"
 android:background="#999999"
 android:layout_height="wrap_content"
 android:orientation="vertical">

 <com.sanhuimusic.mycustomview.view.CompositeViews
  android:id="@+id/topBar"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"

  custom:titleText="@string/titleText"
  custom:titleColor="#000000"
  custom:titleTextSize="@dimen/titleTextSize"
  custom:titleBackground="#999999"
  custom:leftText="@string/leftText"
  custom:leftTextColor="#FFFFFF"
  custom:leftBackground="#666666"
  custom:leftTextSize="@dimen/leftTextSize"
  custom:rightText="@string/rightText"
  custom:rightTextColor="#FFFFFF"
  custom:rightBackground="#666666"
  custom:rightTextSize="@dimen/rightTextSize"
  />

</LinearLayout>

我们是使用custom加上我们自定义属性里面< attr name="titleText" format="string"/>里的name值来动态设置属性值的,如:custom:titleText="@string/titleText"。

ok,在我们xml文件中已设定好属性值,那么该怎么显示出来呢?这个是需要通过一个类型组TypedArray来获取的,它里面包含各种从AttributeSet属性集中获取属性的方法,所以我们修改上面的构造方法和initView(context)方法,如下所示:

 private void initView(Context context, AttributeSet attrs) {
  mLefeText = new TextView(context);
  mRightText = new TextView(context);
  textTitle = new TextView(context);

  /**
   * 获取自定义属性
   */
  TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.CompositeViews);
  String titleText = typedArray.getString(R.styleable.CompositeViews_titleText);
  float titleTextSize = typedArray.getDimension(R.styleable.CompositeViews_titleTextSize, 16);
  int titleColor = typedArray.getColor(R.styleable.CompositeViews_titleColor,0);
  Drawable titleBackground = typedArray.getDrawable(R.styleable.CompositeViews_titleBackground);

  String leftText = typedArray.getString(R.styleable.CompositeViews_leftText);
  int leftTextColor = typedArray.getColor(R.styleable.CompositeViews_leftTextColor, 0);
  float leftTextSize = typedArray.getDimension(R.styleable.CompositeViews_leftTextSize, 16);
  Drawable leftBackground = typedArray.getDrawable(R.styleable.CompositeViews_leftBackground);

  String rightText = typedArray.getString(R.styleable.CompositeViews_rightText);
  int rightTextColor = typedArray.getColor(R.styleable.CompositeViews_rightTextColor, 0);
  float rightTextSize = typedArray.getDimension(R.styleable.CompositeViews_rightTextSize, 16);
  Drawable rightBackground = typedArray.getDrawable(R.styleable.CompositeViews_rightBackground);
  typedArray.recycle();
  /*
   * 左按钮位置
   */
  leftLayoutParams = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
  leftLayoutParams.addRule(RelativeLayout.ALIGN_PARENT_LEFT,TRUE);
  mLefeText.setText(leftText);
  mLefeText.setTextColor(leftTextColor);
  mLefeText.setTextSize(leftTextSize);
  mLefeText.setBackground(leftBackground);
  addView(this.mLefeText,leftLayoutParams);
   /*
   * 右按钮位置
   */
  ridhtLayoutParams = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
  ridhtLayoutParams.addRule(RelativeLayout.ALIGN_PARENT_RIGHT,TRUE);
  mRightText.setText(rightText);
  mRightText.setTextColor(rightTextColor);
  mRightText.setTextSize(rightTextSize);
  mRightText.setBackground(rightBackground);
  addView(mRightText,ridhtLayoutParams);
  /*
   * 中间标题位置
   */
  titleLayoutParams = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
  titleLayoutParams.addRule(RelativeLayout.CENTER_IN_PARENT,TRUE);
  textTitle.setText(titleText);
  textTitle.setTextSize(titleTextSize);
  textTitle.setTextColor(titleColor);
  textTitle.setBackground(titleBackground);
  addView(textTitle,titleLayoutParams);
 }

代码解释:首先通过上下文context获取到属性存放到TypedArray 中,然后通过TypedArray 里封装好的各种方法获取对应的属性值,然后再分别为我们的控件设置属性。这样就完成了,自定义属性的使用,并且复用度高,每当需要使用标题栏是都只需要在xml中添加我们定义的View控件,为其配置属性即可使用,节约了开发时间,提高了效率,并且还保持的app风格的一致。

好,到这里感觉已经讲完了整个过程吧,其实还有一个重要的实现还没有讲。我们的控件已经可以呈现出来了,但是怎么完成里面控件的作用呢?

这里比较常见的做法是利用回调机制来实现功能的开发,首先我们先定义一个接口,创建两个方法,用于左右控件的点击事件。

 public interface TopBarClickListener{
   void leftClickListener();
   void rightClickListener();
 }

然后在构造方法中为左右控件添加点击事件,但不实现功能,等待调用者自己实现:

private void setListener() {
  mLefeText.setOnClickListener(new OnClickListener() {
   @Override
   public void onClick(View v) {
    mTopBarClickListener.leftClickListener();
   }
  });
  mRightText.setOnClickListener(new OnClickListener() {
   @Override
   public void onClick(View v) {
    mTopBarClickListener.rightClickListener();
   }
  });
 }

再者,把定义好的接口暴露给调用者:

 public void setOnTopBarClickListener(TopBarClickListener topBarClickListener){
  mTopBarClickListener = topBarClickListener;
 }

最后,谁调用,谁实现。这就完成了不同界面复用控件实现不同的功能的便利。在这里我们只在MainActivity中打印Toast就可以了。

public class MainActivity extends AppCompatActivity {
 private CompositeViews topBar;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  topBar = (CompositeViews) findViewById(R.id.topBar);
  topBar.setOnTopBarClickListener(new CompositeViews.TopBarClickListener(){
   @Override
   public void leftClickListener() {
    ToastUtil.makeText(MainActivity.this,"您点击了返回键",Toast.LENGTH_SHORT).show();
   }
   @Override
   public void rightClickListener() {
    ToastUtil.makeText(MainActivity.this,"您点击了搜索键",Toast.LENGTH_SHORT).show();
   }
  });
 }
}

OK,看看结果吧

好,已经可以实现我们的需求了,是不是学会很多呢。

今天主要讲了android自定义View中另一种的实现,并且还学习了自定义属性,同学们下去好好消化下,并自己动手现实一两个例子吧,好了,今天就讲到这里,谢谢大家。

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

(0)

相关推荐

  • Android自定义控件的创建方法

    本文为大家分享了Android创建自定义控件的具体代码,供大家参考,具体内容如下 1.仿iPhone 的风格,在界面的顶部放置一个标题栏. <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match

  • Android自定义控件之继承ViewGroup创建新容器

    欢迎大家来学习本节内容,前几节我们已经学习了其他几种自定义控件,分别是Andriod 自定义控件之音频条及 Andriod 自定义控件之创建可以复用的组合控件还没有学习的同学请先去学习下,因为本节将使用到上几节所讲述的内容. 在学习新内容之前,我们先来弄清楚两个问题: 1 . 什么是ViewGroup? ViewGroup是一种容器.它包含零个或以上的View及子View. 2 . ViewGroup有什么作用? ViewGroup内部可以用来存放多个View控件,并且根据自身的测量模式,来测量

  • android自定义控件和自定义回调函数步骤示例

    自定义控件的步骤: 1 View的工作原理2 编写View类3 为View类增加属性4 绘制屏幕5 响应用户消息6 自定义回调函数 java代码 复制代码 代码如下: private class MyText extends LinearLayout {    private TextView text1; /*     * private String text;     *      * public String getText() { return text; }     *     

  • Android开发之自定义控件用法详解

    本文实例讲述了Android开发之自定义控件用法.分享给大家供大家参考,具体如下: 今天和大家分享下组合控件的使用.很多时候android自定义控件并不能满足需求,如何做呢?很多方法,可以自己绘制一个,可以通过继承基础控件来重写某些环节,当然也可以将控件组合成一个新控件,这也是最方便的一个方法.今天就来介绍下如何使用组合控件,将通过两个实例来介绍. 第一个实现一个带图片和文字的按钮,如图所示: 整个过程可以分四步走.第一步,定义一个layout,实现按钮内部的布局.代码如下: custom_bu

  • android 自定义控件 自定义属性详细介绍

    自定义控件在android中无处不见,自定义控件给了我们很大的方便.比如说,一个视图为imageview ,imagebutton ,textview 等诸多控件的组合,用的地方有很多,我们不可能每次都来写3个的组合,既浪费时间,效率又低.在这种情况下,我们就可以自定义一个view来替换他们,不仅提升了效率并且在xml中运用也是相当的美观. 一.控件自定义属性介绍 以下示例中代码均在values/attrs.xml 中定义,属性均可随意命名. 1. reference:参考某一资源ID. 示例:

  • android开发教程之自定义控件checkbox的样式示例

    主界面xml文件 复制代码 代码如下: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:tools="http://schemas.android.com/tools"    android:layout_width="match_parent"    android:layout_height="match_p

  • Android自定义控件之圆形/圆角的实现代码

    一.问题在哪里? 问题来源于app开发中一个很常见的场景--用户头像要展示成圆的:  二.怎么搞? 机智的我,第一想法就是,切一张中间圆形透明.四周与底色相同.尺寸与头像相同的蒙板图片,盖在头像上不就完事了嘛,哈哈哈! 在背景纯色的前提下,这的确能简单解决问题,但是如果背景没有这么简单呢? 在这种不规则背景下,有两个问题: 1).背景图常常是适应手机宽度缩放,而头像的尺寸又是固定宽高DP的,所以固定的蒙板图片是没法保证在不同机型上都和背景图案吻合的. 2).在这种非纯色背景下,哪天想调整一下头像

  • 详解Android自定义控件属性TypedArray以及attrs

    最近在研究android自定义控件属性,学到了TypedArray以及attrs.大家也可以结合<理解Android中的自定义属性>这篇文章进行学习,后续一篇还有应用. 1.attrs文件编写 <?xml version="1.0" encoding="utf-8"?> <resources> <attr name="titleText" format="string" /> &

  • Android中自定义控件的declare-styleable属性重用方案

    最近接触了Android自定义控件,涉及到自定义xml中得属性(attribute),其实也很简单,但是写着写着,发现代码不完美了,就是在attrs.xml这个文件中,发现属性冗余,于是就想有没有类似属性继承或者include之类的方法.本文将就declare-stylable中属性重用记录一下. 不完美的代码 复制代码 代码如下: <?xml version="1.0" encoding="utf-8"?> <resources>     

  • android自定义控件创建翻页接口详细代码

    本文分享的这个类的目的是为在看书翻页时,需要进行的动作提供接口,利用android自定义控件创建翻页接口,具体内容如下 BookPage.java package com.horse.util; import java.text.DecimalFormat; import java.util.Vector; import com.horse.bean.Chapter; import android.graphics.Bitmap; import android.graphics.Canvas;

随机推荐