第九章 自定义控件

1.为什么要用到自定义控件

  在介绍自定义控件之前,说说控件的基本结构,如下图所示,所有的控件都直接或者间接的继承View的,所有的布局都是继承ViewGroup的。我们都知道继承的原理,是在继承父属性的基础上还拥有自己的特别属性,因此我们使用的控件其实也就是在View的基础之上又添加自己的功能。所以ViewGroup是一个特殊的View,可以包含很多子View和子ViewGroup,用于放置控件和布局的容器。
  但是,我们的需求如果仅靠系统系统的控件,无法满足的时候呢?这个时候怎么办?继承就给了一个很好解决办法来创建自定义的控件。


控件的基本结构图

2.引入布局

  在实际的开发过程中,我们的UI小姐姐在给你设计开发图的时候,不会不给你的页面加上顶部标题,因为你需要返回的,你需要在你的顶部标题栏中进行各种操作的啊。这些标题栏的内容一般都是差不多的,如果你不想重复代码的话,只需要将这个顶部标题栏自己单独写在一个xml文件里面,在你需要的加上标题的时候,通过 include来加上引入你写的xml文件就可以了,这样减少了代码,减轻了工作,提高了代码的复用率,是不是美滋滋。
1.新建一个head_title.xml的layout文件

<?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="50dp"
    android:background="#0093fe">

    <ImageView
        android:layout_width="80dp"
        android:layout_height="match_parent"
        android:src="@mipmap/nav_back_white"
        android:layout_alignParentLeft="true"/>

    <TextView
        android:layout_width="50dp"
        android:layout_height="match_parent"
        android:text="标题"
        android:layout_centerHorizontal="true"
        android:textColor="#fff"
        android:gravity="center"
        android:textSize="18sp"/>
    
    <ImageView
        android:layout_width="50dp"
        android:layout_height="match_parent" 
        android:src="@mipmap/nav_share"
        android:layout_alignParentRight="true"
        android:scaleType="centerInside"/>

</RelativeLayout>
head_title

2.隐藏系统自带的标题
方法一:代码中修改

ublic class MainActivity extends AppCompatActivity {

  @Override
  protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      ActionBar actionBar=getSupportActionBar();
      if(actionBar!=null){
          actionBar.hide();
      }
  }
}

方法二:修改主题

未修改之前的
 <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>
修改 parent属性
    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>

3.通过include 引用head_title.xml 文件。 格式:<include layout="@layout/被引用的文件名称"/>

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.demo.demo4.MainActivity">
    
    <include layout="@layout/head_title"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>

引用之后

使用这种方式,不管多少布局都能通过include 套用进去。

3.创建自定义控件

  引入布局解决了代码的重复编写,但是如果在布局控件中有一些控件需要响应时间的haul,我们还得为每个活动中的响应事件编写代码。比如标题栏的返回按钮,不管在别的什么活动中,它的功能都是销毁当前的活动,同样的代码,就不要写很多遍了,你觉得是吧。

3.1 自定义控件的编写

1.自定义一个TitleLayout 继承LineraLayout,通过LayoutInflate 的from()的方法构建一个LayoutInflater对象,调用inflate() 方法动态加载布局文件,第二个参数是给加载好的布局再添加一个父布局。

public class TitleLayout extends LinearLayout {
    public TitleLayout(Context context) {
        this(context,null);
    }

    public TitleLayout(Context context, @Nullable AttributeSet attrs) {
        this(context, attrs,0);
    }

    public TitleLayout(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        LayoutInflater.from(context).inflate(R.layout.head_title,this);
    }
}

2.在activity_main.xml文件中添加控件,添加的方式和普通控件是一个样的。我们自定义控件引用的时候需要引用全包名。

    <com.demo.demo4.TitleLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
自定义包名引用

3.为各个按钮添加点击事件和处理

public class TitleLayout extends LinearLayout {
    public TitleLayout(Context context) {
        this(context,null);
    }

    public TitleLayout(Context context, @Nullable AttributeSet attrs) {
        this(context, attrs,0);
    }

    public TitleLayout(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        LayoutInflater.from(context).inflate(R.layout.head_title,this);
        initView();

    }

    private void initView() {
        ImageView backiv= (ImageView) findViewById(R.id.back_iv);
        ImageView shareiv= (ImageView) findViewById(R.id.share_iv);
        TextView title=(TextView) findViewById(R.id.title_tv);

        backiv.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                ((Activity)getContext()).finish();
            }
        });
        shareiv.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                ((Activity)getContext()).finish();
            }
        });
    }

自定义的道路还很长,这里讲的是最基础的,后续会陆续更新。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,634评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,951评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,427评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,770评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,835评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,799评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,768评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,544评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,979评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,271评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,427评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,121评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,756评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,375评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,579评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,410评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,315评论 2 352

推荐阅读更多精彩内容