安卓自定义控件的实现

首先自定义控件有什么用呢?当有一种组合控件在很多活动的布局中都要使用到的时候,如果没有自定义控件,那么在每个活动的布局都要写一次重复的代码,这样子就会使代码累赘。

这时就要使用到自定义控件了,自定义控件的步骤如下:

第一步

完成自定义控件的布局文件(.xml文件)

如下面的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:orientation="horizontal" >

    <Button
        android:id="@+id/btn_back"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="5dp"
        android:text="退出" />

    <TextView
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:gravity="center"
        android:textSize="20sp"
        android:layout_weight="1"
        android:text="标题内容" />

    <Button
        android:id="@+id/btn_next"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginRight="5dp"
        android:text="next" />

</LinearLayout>

第二步

定义一个类继承于ViewGroup下的任意子类,一般为LinearLayout(必须重写LinearLayout中的带两个参数的构造方法,在布局中引入这个TitleLayout控件就会调用这个构造函数。LayoutInflater的inflater方法中接收两个参数,一个是要加载的布局文件的id,一个是给加载好的布局添加一个父布局,这里是我们要指定为TitleLayout,于是直接传入this)

package com.jsako.ui;

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;

import com.jsako.R;

public class TitleLayout extends LinearLayout {

	public TitleLayout(Context context, AttributeSet attrs) {
		super(context, attrs);
		View view=LayoutInflater.from(context).inflate(R.layout.title,this);
		init(view);
	}

	private void init(View view) {
		Button btn_back=(Button) findViewById(R.id.btn_back);
		Button btn_next=(Button) findViewById(R.id.btn_next);
		btn_back.setOnClickListener(new OnClickListener() {
			@Override
			public void onClick(View v) {
				((Activity)getContext()).finish();
			}
		});

		btn_next.setOnClickListener(new OnClickListener() {

			@Override
			public void onClick(View v) {
				Toast.makeText(getContext(),"你点击了next", 0).show();
			}
		});
	}

}

 第三步

使用这个自定义控件(添加自定义控件和添加普通控件的方式基本一样,只不过在添加自定义控件的时候我们需要指明控件的完整类名,包名在这里是不可以省略的)

<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_parent"
    tools:context="${relativePackage}.${activityClass}" >

    <com.jsako.ui.TitleLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >
    </com.jsako.ui.TitleLayout>

</RelativeLayout>
时间: 2024-10-13 22:56:39

安卓自定义控件的实现的相关文章

【安卓自定义控件系列】安卓自定义控件之组合控件

在安卓开发中,谷歌已经为我们提供了许多原生控件,基本上能够满足我们日常的开发需求,但是某些项目中原生控件可能达不到产品所要求的各式各样的酷炫效果或功能效果,这个时候我们只能自己自定义控件来满足项目需求,我们知道自定义控件包括三种方式: 1继承控件,即继承谷歌提供的原生控件,在此基础上提供一些原生控件不具备的功能,如github上各种酷炫效果的开源组件基本上都是采用的这种方式. 2组合控件:即组合多个原生控件来达到某些单个原生控件原本不具备的功能,这个在日常开发中应该是使用的比较多的,如基本上每个

安卓自定义控件(二)BitmapShader、ShapeDrawable、Shape

第一篇博客中,我已经对常用的一些方法做了汇总,这篇文章主要介绍BitmapShader位图渲染.ComposeShader组合渲染,然后看看Xfermode如何实际应用.不过本文还是只重写onDraw一个方法,工欲善其事必先利其器嘛,一个方法一个方法地学,先了解每个对象是干什么的. ViewHelper(View处理常用方法封装) 安卓自定义控件(一)Canvas.Paint.Shader 安卓自定义控件(二)BitmapShader.ShapeDrawable.Shape 带边框的椭圆形Ima

安卓自定义控件——标题栏的复用

一贯作风,先看效果图,再实现 编写自定义属性文件atts.xml,自定义属性中涉及到的属性有左右两边的button的背景图,中间标题的内容,字体大小,字体颜色. <?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name="TopBar"> <attr name="leftBackground"

代码实现List下载列表(安卓自定义控件,List列表)

自定义下载列表 点击跳转指定网址 package com.example.listfordownload2; import android.app.Activity; import android.os.Bundle; public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceStat

安卓自定义控件

分为三种: 继承已有控件:重写onDraw() 组合已有控件:继承ViewGroup,通常是某一种Layout 自定义新控件:继承View或者SurfaceView,重写onMeasure,OnDraw 介绍一下onMeasure里面的一个参数MeasureSpec 源码: /** * MeasureSpec封装了父布局传递给子布局的布局要求,每个MeasureSpec代表了一组宽度和高度的要求 * MeasureSpec由size和mode组成. * 三种Mode: * 1.UNSPECIFI

安卓自定义控件常用属性

常用format属性: 1) string:字符串类型: 2) integer:整数类型: 3) float:浮点型: 4) dimension:尺寸,后面必须跟dp.dip.px.sp等单位: 5) Boolean:布尔值: 6) reference:引用类型,传入的是某一资源的ID,必须以"@"符号开头: 7) color:颜色,必须是"#"符号开头: 8) fraction:百分比,必须是"%"符号结尾: 9) enum:枚举类型 原文地址

安卓自定义边栏英文索引控件

/** * 成员信息列表 -右侧的导航条 */class EnglishIndexBar @JvmOverloads constructor(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0) : View(context, attrs, defStyleAttr) { private var mIndex = -1 private var mTextSize: Int = 0 private var mSe

最新最全的 Android 开源项目合集

原文链接:https://github.com/opendigg/awesome-github-android-ui 在 Github 上做了一个很新的 Android 开发相关开源项目汇总,涉及到 Android 开发的方方面面,基本很全了.对 Android 开发感兴趣的欢迎 Star ,后续也会定期维护更新这个列表.当然,你也可以去 opendigg 上查看. -- 由欧戈分享 awesome-github-android-ui 是由OpenDigg整理并维护的安卓UI相关开源项目库集合.

Android UI相关开源项目库汇总

最近做了一个Android UI相关开源项目库汇总,里面集合了OpenDigg 上的优质的Android开源项目库,方便移动开发人员便捷的找到自己需要的项目工具等,感兴趣的可以到GitHub上给个star. 抽屉菜单 MaterialDrawer ★7337 - 安卓抽屉效果实现方案 Side-Menu.Android ★3865 - 创意边侧菜单 FlowingDrawer ★1744 - 向右滑动流动抽屉效果 SlidingRootNav ★1338 - 仿DrawerLayout的View