Android 组合控件实现布局的复用的方法

看到很多项目会有实现自己的标题栏的做法,通常的界面是左边按钮或文字,加上中间的标题和右边的按钮或文字组成的。比较好的一种做法是使用include标签,复用同一个xml文件来实现布局的复用。但是这种方法是通过代码的方式来设置标题,左右按钮等其他的属性,会导致布局属性和Activity代码耦合性比较高。

因此,我们要通过自定义View,继承ViewGroup子类来实现这样的布局,降低布局文件和Activity代码耦合性。

首先,我们需要写出布局文件layout_custom_titlebar.xml。

<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<!-- 使用merge标签减少层级 -->
<Button
  android:id="@+id/title_bar_left"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_alignParentLeft="true"
  android:layout_centerVertical="true"
  android:layout_marginLeft="5dp"
  android:background="@null"
  android:minHeight="45dp"
  android:minWidth="45dp"
  android:textSize="14sp" />

<TextView
  android:id="@+id/title_bar_title"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_centerInParent="true"
  android:singleLine="true"
  android:textSize="17sp" />

<Button
  android:id="@+id/title_bar_right"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_alignParentRight="true"
  android:layout_centerVertical="true"
  android:layout_marginRight="7dp"
  android:background="@null"
  android:minHeight="45dp"
  android:minWidth="45dp"
  android:textSize="14sp" />

</merge>

2.定义自定义属性

<declare-styleable name="CustomTitleBar">
  <!--标题栏背景色-->
  <attr name="title_background_color" format="reference|integer" />
  <!--左边按钮是否可见-->
  <attr name="left_button_visible" format="boolean" />
  <!--右边按钮是否可见-->
  <attr name="right_button_visible" format="boolean" />
  <!--标题文字-->
  <attr name="title_text" format="string" />
  <!--标题文字颜色-->
  <attr name="title_text_color" format="color" />
  <!--标题文字图标-->
  <attr name="title_text_drawable" format="reference|integer" />
  <!--左边按钮文字-->
  <attr name="left_button_text" format="string" />
  <!--左边按钮文字颜色-->
  <attr name="left_button_text_color" format="color" />
  <!--左边按钮图标-->
  <attr name="left_button_drawable" format="reference|integer" />
  <!--右边按钮文字-->
  <attr name="right_button_text" format="string" />
  <!--右边按钮文字颜色-->
  <attr name="right_button_text_color" format="color" />
  <!--右边按钮图标-->
  <attr name="right_button_drawable" format="reference|integer" />
</declare-styleable>

3.自定义一个View继承ViewGroup子类,这里我们继承RelativeLayout。

public class CustomTitleBar extends RelativeLayout {
private Button titleBarLeftBtn;
private Button titleBarRightBtn;
private TextView titleBarTitle;

public CustomTitleBar(Context context) {
  super(context);
}

public CustomTitleBar(Context context, AttributeSet attrs) {
  super(context, attrs);

  LayoutInflater.from(context).inflate(R.layout.layout_custom_titlebar,this,true);
  titleBarLeftBtn = (Button) findViewById(R.id.title_bar_left);
  titleBarRightBtn = (Button) findViewById(R.id.title_bar_right);
  titleBarTitle = (TextView) findViewById(R.id.title_bar_title);

  TypedArray typedArray=context.obtainStyledAttributes(attrs,R.styleable.CustomTitleBar);
  if(typedArray!=null){
    //titleBar背景色
    int titleBarBackGround=typedArray.getResourceId(R.styleable.CustomTitleBar_title_background_color, Color.BLUE);
    setBackgroundColor(titleBarBackGround);

    //获取是否要显示左边按钮
    boolean leftButtonVisible = typedArray.getBoolean(R.styleable.CustomTitleBar_left_button_visible, true);
    if (leftButtonVisible) {
      titleBarLeftBtn.setVisibility(View.VISIBLE);
    } else {
      titleBarLeftBtn.setVisibility(View.INVISIBLE);
    }
    //设置左边按钮的文字
    String leftButtonText = typedArray.getString(R.styleable.CustomTitleBar_left_button_text);
    if (!TextUtils.isEmpty(leftButtonText)) {
      titleBarLeftBtn.setText(leftButtonText);
      //设置左边按钮文字颜色
      int leftButtonTextColor = typedArray.getColor(R.styleable.CustomTitleBar_left_button_text_color, Color.WHITE);
      titleBarLeftBtn.setTextColor(leftButtonTextColor);
    } else {
      //设置左边图片icon 这里是二选一 要么只能是文字 要么只能是图片
      int leftButtonDrawable = typedArray.getResourceId(R.styleable.CustomTitleBar_left_button_drawable, R.mipmap.titlebar_back_icon);
      if (leftButtonDrawable != -1) {
        titleBarLeftBtn.setBackgroundResource(leftButtonDrawable);
      }
    }

    //先获取标题是否要显示图片icon
    int titleTextDrawable = typedArray.getResourceId(R.styleable.CustomTitleBar_title_text_drawable, -1);
    if (titleTextDrawable != -1) {
      titleBarTitle.setBackgroundResource(titleTextDrawable);
    } else {
      //如果不是图片标题 则获取文字标题
      String titleText = typedArray.getString(R.styleable.CustomTitleBar_title_text);
      if (!TextUtils.isEmpty(titleText)) {
        titleBarTitle.setText(titleText);
      }
      //获取标题显示颜色
      int titleTextColor = typedArray.getColor(R.styleable.CustomTitleBar_title_text_color, Color.WHITE);
      titleBarTitle.setTextColor(titleTextColor);
    }

    //获取是否要显示右边按钮
    boolean rightButtonVisible = typedArray.getBoolean(R.styleable.CustomTitleBar_right_button_visible, true);
    if (rightButtonVisible) {
      titleBarRightBtn.setVisibility(View.VISIBLE);
    } else {
      titleBarRightBtn.setVisibility(View.INVISIBLE);
    }
    //设置右边按钮的文字
    String rightButtonText = typedArray.getString(R.styleable.CustomTitleBar_right_button_text);
    if (!TextUtils.isEmpty(rightButtonText)) {
      titleBarRightBtn.setText(rightButtonText);
      //设置右边按钮文字颜色
      int rightButtonTextColor = typedArray.getColor(R.styleable.CustomTitleBar_right_button_text_color, Color.BLUE);
      titleBarRightBtn.setTextColor(rightButtonTextColor);
    } else {
      //设置右边图片icon 这里是二选一 要么只能是文字 要么只能是图片
      int rightButtonDrawable = typedArray.getResourceId(R.styleable.CustomTitleBar_right_button_drawable, -1);
      if (rightButtonDrawable != -1) {
        titleBarRightBtn.setBackgroundResource(rightButtonDrawable);
      }
    }
    typedArray.recycle();
  }

}

public void setTitleClickListener(OnClickListener onClickListener) {
  if (onClickListener != null) {
    titleBarLeftBtn.setOnClickListener(onClickListener);
    titleBarRightBtn.setOnClickListener(onClickListener);
  }
}

public Button getTitleBarLeftBtn() {
  return titleBarLeftBtn;
}

public Button getTitleBarRightBtn() {
  return titleBarRightBtn;
}

public TextView getTitleBarTitle() {
  return titleBarTitle;
}
}

4.正确地使用它

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

<com.mumubin.demoproject.view.CustomTitleBar
  android:id="@+id/ctb_view"
  android:layout_width="match_parent"
  android:layout_height="45dp"
  app:right_button_drawable="@mipmap/sure"
  app:title_text="@string/app_name" />

<com.mumubin.demoproject.view.CustomTitleBar
  android:layout_width="match_parent"
  android:layout_height="45dp"
  android:layout_marginTop="4dp"
  app:title_background_color="@color/colorPrimary"
  app:title_text="@string/app_name"
  app:title_text_color="@color/colorAccent"
  app:left_button_text="左边"
  app:right_button_text="右边"/>

<com.mumubin.demoproject.view.CustomTitleBar
  android:layout_width="match_parent"
  android:layout_height="45dp"
  android:layout_marginTop="4dp"
  app:title_text_drawable="@mipmap/ic_launcher"
  app:title_background_color="@color/colorAccent"
  app:left_button_text="左边"
  app:right_button_text="右边"/>
</LinearLayout>

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

(0)

相关推荐

  • Android布局控件之常用linearlayout布局

    LinearLayout是线性布局控件,它包含的子控件将以横向或竖向的方式排列,按照相对位置来排列所有的widgets或者其他的containers,超过边界时,某些控件将缺失或消失.因此一个垂直列表的每一行只会有一个widget或者是container,而不管他们有多宽,而一个水平列表将会只有一个行高(高度为最高子控件的高度加上边框高度).LinearLayout保持其所包含的widget或者是container之间的间隔以及互相对齐(相对一个控件的右对齐.中间对齐或者左对齐). xml属性

  • Android时间选择器、日期选择器实现代码

    本文为大家分享了两款选择器,一款可以针对时间进行选择.一款可以针对日期进行选择,供大家参考,具体内容如下 一.时间选择器 1.1.布局 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.and

  • Android开发之基本控件和四种布局方式详解

    Android中的控件的使用方式和iOS中控件的使用方式基本相同,都是事件驱动.给控件添加事件也有接口回调和委托代理的方式.今天这篇博客就总结一下Android中常用的基本控件以及布局方式.说到布局方式Android和iOS还是区别挺大的,在iOS中有Frame绝对布局和AutoLayout相对布局.而在Android中的布局方式就比较丰富了,今天博客中会介绍四种常用的布局方式.先总结一下控件,然后再搞一搞基本方式,开发环境还是用的Mac下的Android Studio.开始今天的正题, 虽然A

  • Android布局优化之ViewStub控件

    ViewStub是Android布局优化中一个很不错的标签/控件,直接继承自View.虽然Android开发人员基本上都听说过,但是真正用的可能不多. ViewStub可以理解成一个非常轻量级的View,与其他的控件一样,有着自己的属性及特定的方法.当ViewStub使用在布局文件中时,当程序inflate布局文件时,ViewStub本身也会被解析,且占据内存控件,但是与其他控件相比,主要区别体现在以下几点: 1.当布局文件inflate时,ViewStub控件虽然也占据内存,但是相相比于其他控

  • Android动态添加设置布局与控件的方法

    本文实例讲述了Android动态添加设置布局与控件的方法.分享给大家供大家参考,具体如下: 有时候我们会在代码端,动态的设置,添加布局和控件.下面我们就看来看一下如何处理,直接上代码,代码里面的注解很清楚了. 布局文件:fragment_hot.xml 说明:这个部局,我用的是scrollView做为基础布局,主要是为了实现一个滚动.这里不多说,这个你可以使用任何布局都可以,这里的id我是提前定义的. 这里面的现在有的布局是我为了看到我在代码端,动态添加的代码,是否可以追加到现有布局的后面而加上

  • Android 图片网格布局控件示例代码

    项目地址:MultiPictureView MultiPictureView是一个可以将多张图片以网格的方式显示的View,通过简单的接口实现烦人的布局,从此解放你的小手手 显示效果 支持设置图片数量上限 支持设置最多显示列数 支持动态布局和静态布局两种模式(见下图) 支持编辑模式和展示模式(编辑模式可以增加和删除图片) 布局方式 动态布局 静态布局 编辑/显示模式 如何使用 1. 在布局中声明 <com.goyourfly.multi_picture.MultiPictureView andr

  • Android 仿京东商城底部布局的选择效果(Selector 选择器的实现)

    京东商城的底部布局的选择效果看上去很复杂,其实很简单,这主要是要感谢 selector 选择器,本文将讲解仿照京东商城的底部布局的选择效果,如何实现 selector 选择器,在不同的状态下,给 view 设置不同的背景. 京东商城底部布局的选择效果如下. View主要的几种状态 主要状态有8种,设置状态的代码以及相应的含义如下. android:state_pressed = "true/false" //true表示按下状态,false表示非按下状态. android:state_

  • Android编程布局控件之AbsoluteLayout用法实例分析

    本文实例讲述了Android编程布局控件之AbsoluteLayout用法.分享给大家供大家参考,具体如下: AbsoluteLayout是绝对布局管理器,指的是指定组件的左上角绝对坐标来指定组件的布局 <?xml version="1.0" encoding="utf-8"?> <AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"

  • Android开发实现布局中为控件添加选择器的方法

    本文实例讲述了Android开发实现布局中为控件添加选择器的方法.分享给大家供大家参考,具体如下: 在开发过程中,动态交互的一些展示效果可以通过布局中添加选择器实现,这样就可减少Activity等的代码数量,MVP开发中降低耦合性,使开发人员在写代码时只需要关注逻辑处理. 比如:一个按钮,原本背景图片为红色,字体为黑色,点击时候背景图片为黄色,字体改为白色. 这类简单效果在布局时就可以实现: <Button android:id="@+id/btn_start" android:

  • Android 布局控件之LinearLayout详细介绍

    LinearLayout是线性布局控件,它包含的子控件将以横向或竖向的方式排列,按照相对位置来排列所有的widgets或者其他的containers,超过边界时,某些控件将缺失或消失.因此一个垂直列表的每一行只会有一个widget或者是container,而不管他们有多宽,而一个水平列表将会只有一个行高(高度为最高子控件的高度加上边框高度).LinearLayout保持其所包含的widget或者是container之间的间隔以及互相对齐(相对一个控件的右对齐.中间对齐或者左对齐). API说明

随机推荐