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

 更新时间:2020年06月12日 14:49:42   作者:null;  
这篇文章主要介绍了Android Studio 创建自定义控件的方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

我们知道,当系统控件并不能满足我们的需求时,我们就需要来创建自定义控件,主要有两种方法

(1)引入布局

下面来自定义一个控件,iPhone的标题栏,创建一个标题栏并不是什么难事,加入两个button一个TextView就行了,可是在我们的应用中,有很多页面都是需要这样的标题栏,我们不可能每个活动都写一遍布局,这个时候我们就可以用引用布局的方法,新建一个title.xml

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

  <Button
    android:id="@+id/title_back"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:layout_margin="5dp"
    android:text="back"
    android:textColor="#fff"/>

  <TextView
    android:id="@+id/title_text"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:layout_weight="1"
    android:gravity="center"
    android:textColor="#c0c0c0"
    android:textSize="24sp"
    android:text="title text" />

  <Button
    android:id="@+id/title_edit"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:layout_margin="5dp"
    android:textColor="#fff"
    android:text="edit" />
</LinearLayout>

现在标题栏已经写好了,接下来就要在程序中使用,修改activity_main.xml

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

  <include layout="@layout/title"/>

</LinearLayout>

我们只要通过一句include语句引进来就行了

 <include layout="@layout/title"/>

最后我们需要在MainActivity中将系统自带的标题栏屏蔽

package com.example.ch03;

import android.drm.DrmStore;
import android.support.v7.app.ActionBar;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

public 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();
    }
  }
}

最后来看一下效果

(2)注册点击事件

在上面我们看到,每个界面的返回按钮功能都是一样的,即销毁当前活动,我们不可能在每个活动中都重新注册,所以使用自定义控件的方式来解决
新建TitleLayout,成为标题栏控件

public class TitleLayout extends LinearLayout {
			public TitleLayout(Context context, AttributeSet attrs){
 				 super(context,attrs);
  			 LayoutInflater.from(context).inflate(R.layout.title,this);

我们重写了LinearLayout中带参数的构造函数,引入TitleLayout控件就会调用这个构造函数,然后对标题栏进行动态加载,就需要借助LayoutInflater实现。通过LayoutInflater的from方法构建一个LayoutInflater对象,调用inflate()方法动态加载一个布局文件

然后在布局文件中添加自定义控件,修改activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
 >
<com.example.ch03.TitleLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content"/>

</LinearLayout>

重新运行一下,效果是一样的

下面来给按钮注册点击事件,修改TitleLayout中的代码

package com.example.ch03;
import android.app.Activity;
import android.content.Context;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.Button;
import android.widget.LinearLayout;
import android.widget.Toast;
public class TitleLayout extends LinearLayout {
public TitleLayout(Context context, AttributeSet attrs){
  super(context,attrs);
  LayoutInflater.from(context).inflate(R.layout.title,this);

  Button titleBack = findViewById(R.id.title_back);
  Button titleEdit = findViewById(R.id.title_edit);
  titleBack.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(View v) {

      ((Activity) getContext()).finish();
    }
  });
  titleEdit.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(View v) {
      Toast.makeText(getContext(),"You click edit button",
          Toast.LENGTH_LONG).show();
    }
  });
}

}

重新运行一下,然后点击edit按钮

到此这篇关于Android Studio 创建自定义控件的方法的文章就介绍到这了,更多相关Android Studio自定义控件内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

相关文章

  • Android抛物线下载动画制作过程

    Android抛物线下载动画制作过程

    这篇文章主要为大家详细介绍了Android抛物线下载动画制作过程,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-11-11
  • 详解Android开发中Activity的四种launchMode

    详解Android开发中Activity的四种launchMode

    这篇文章主要介绍了Android开发中Activity的四种launchMode,launchMode主要用于控制多个Activity间的跳转,需要的朋友可以参考下
    2016-03-03
  • Android实现九格智能拼图算法

    Android实现九格智能拼图算法

    这篇文章主要为大家详细介绍了Android实现九格智能拼图算法,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-03-03
  • android动态壁纸调用的简单实例

    android动态壁纸调用的简单实例

    动态壁纸的实现其实就是在Activity中调用动态壁纸服务,通过绑定服务得到IWallpaperService,调用该接口中的attach函数实现壁纸的调用。
    2013-06-06
  • Android编程实现XML解析与保存的三种方法详解

    Android编程实现XML解析与保存的三种方法详解

    这篇文章主要介绍了Android编程实现XML解析与保存的三种方法,结合实例形式详细分析了Android实现xml解析的SAX、DOM、PULL三种方法的相关操作技巧,需要的朋友可以参考下
    2017-08-08
  • Android页面之间进行数据回传的方法分析

    Android页面之间进行数据回传的方法分析

    这篇文章主要介绍了Android页面之间进行数据回传的方法,结合实例形式分析了Android页面之间进行数据的传递与处理技巧,具有一定参考借鉴价值,需要的朋友可以参考下
    2016-06-06
  • Android编程重写ViewGroup实现卡片布局的方法

    Android编程重写ViewGroup实现卡片布局的方法

    这篇文章主要介绍了Android编程重写ViewGroup实现卡片布局的方法,实例分析新建FlowLayout继承ViewGroup类及设置布局文件实现卡片布局效果的相关技巧,需要的朋友可以参考下
    2016-02-02
  • Android 分享功能的实现代码

    Android 分享功能的实现代码

    这篇文章主要介绍了Android 分享功能的实现代码的相关资料,需要的朋友可以参考下
    2017-03-03
  • Android 加载GIF图最佳实践方案

    Android 加载GIF图最佳实践方案

    最近在项目中遇到需要在界面上显示一个本地的 GIF 图的功能,下面通过本文给大家分享Android 加载GIF图最佳实践方案,需要的朋友参考下吧
    2017-08-08
  • Flutter控件之实现Widget基类的封装

    Flutter控件之实现Widget基类的封装

    在实际的开发中,Widget的基类还是很有必要存在的,不然就会存在很多的冗余嵌套代码,本文为大家介绍了Flutter中基类是如何封装的,需要的可以收藏一下
    2023-05-05

最新评论