android自定义组件

简介:

官方文档

/Myselfcomponent/res/values/attrs.xml

1
2
3
4
5
6
7
8
9
<?xml version= "1.0"  encoding= "utf-8" ?>
<resources>
     <declare-styleable name= "MyView"
         >
         <attr name= "textColor"  format= "color" />
         <attr name= "textSize"  format= "dimension"  />
         <attr name= "text"  format= "string" ></attr>
     </declare-styleable>
</resources>

activity_main.xml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<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"
     android:paddingBottom= "@dimen/activity_vertical_margin"
     android:paddingLeft= "@dimen/activity_horizontal_margin"
     android:paddingRight= "@dimen/activity_horizontal_margin"
     android:paddingTop= "@dimen/activity_vertical_margin"
     tools:context= "com.example.myselfcomponent.MainActivity"  xmlns:my= "http://schemas.android.com/apk/res/com.example.myselfcomponent" >
 
     <com.example.myselfcomponent.MyView 
         android:id= "@+id/MyView1"
         android:layout_width= "match_parent"
         android:layout_height= "wrap_content"
         my:textColor= "#00ffff"
         my:textSize= "20sp"
         my:text= "自定义组件"
         
         />
 
</RelativeLayout>
<!-- my:textColor= "#00ffff"
     的前缀跟命名空间有关系
     (tools:context= "com.example.myselfcomponent.MainActivity"  xmlns:my= "http://schemas.android.com/apk/res/com.example.myselfcomponent" >),
     可以自定义
  -->

MyView

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package  com.example.myselfcomponent;
 
import  android.R.integer;
import  android.R.style;
import  android.content.Context;
import  android.content.res.TypedArray;
import  android.graphics.Canvas;
import  android.graphics.Color;
import  android.graphics.Paint;
import  android.graphics.Paint.Style;
import  android.graphics.Rect;
import  android.util.AttributeSet;
import  android.view.View;
/**
  * 自定义组件
  * */
public  class  MyView  extends  View{
     //画笔
     Paint paint;
     String text;
 
     public  MyView(Context context) {
         super (context);
         paint= new  Paint();
         paint.setColor(Color.BLACK);
         paint.setTextSize( 28 );
         
         // TODO Auto-generated constructor stub
     }
     public  MyView(Context context,AttributeSet attrs) {
         // TODO Auto-generated constructor stub
         super (context, attrs);
         paint= new  Paint();
         TypedArray typedArray=context.obtainStyledAttributes(attrs,R.styleable.MyView);
         int  color=typedArray.getColor(R.styleable.MyView_textColor,  0xFFFFFF );
         float  size=typedArray.getDimension(R.styleable.MyView_textSize,  20 );
         text=typedArray.getString(R.styleable.MyView_text);
         paint.setColor(color);
         paint.setTextSize(size);
         //关闭资源
         typedArray.recycle();
     }
     /**
      * 初始化组件时被触发,进行组件的渲染
      * Canvas   画布
      * */
     @Override
     protected  void  onDraw(Canvas canvas) {
         // TODO Auto-generated method stub
         super .onDraw(canvas);
         //设置画笔风格为实心
         paint.setStyle(Style.FILL);
         //绘制正方形
         canvas.drawRect( new  Rect( 10 , 10 , 90 , 90 ), paint);
         paint.setColor(Color.BLUE);
         canvas.drawText(text,  10 110 , paint);
     }
 
}

MainActivity

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package  com.example.myselfcomponent;
 
import  android.app.Activity;
import  android.os.Bundle;
import  android.view.Menu;
import  android.view.MenuItem;
 
public  class  MainActivity  extends  Activity {
  
     @Override
     protected  void  onCreate(Bundle savedInstanceState) {
         super .onCreate(savedInstanceState);
         setContentView(R.layout.activity_main);
     }
 
     @Override
     public  boolean  onCreateOptionsMenu(Menu menu) {
         // Inflate the menu; this adds items to the action bar if it is present.
         getMenuInflater().inflate(R.menu.main, menu);
         return  true ;
     }
 
     @Override
     public  boolean  onOptionsItemSelected(MenuItem item) {
         // Handle action bar item clicks here. The action bar will
         // automatically handle clicks on the Home/Up button, so long
         // as you specify a parent activity in AndroidManifest.xml.
         int  id = item.getItemId();
         if  (id == R.id.action_settings) {
             return  true ;
         }
         return  super .onOptionsItemSelected(item);
     }
}

wKiom1hSVObiPBTvAABjsOc-PRs418.png-wh_50


 本文转自 matengbing 51CTO博客,原文链接:http://blog.51cto.com/matengbing/1883078


相关文章
|
1月前
|
Android开发 开发者
安卓应用开发中的自定义视图
【9月更文挑战第37天】在安卓开发的海洋中,自定义视图犹如一座座小岛,等待着勇敢的探索者去发现其独特之处。本文将带领你踏上这段旅程,从浅滩走向深海,逐步揭开自定义视图的神秘面纱。
33 3
|
23天前
|
存储 Android开发 开发者
深入理解安卓应用开发的核心组件
【10月更文挑战第8天】探索Android应用开发的精髓,本文带你了解安卓核心组件的奥秘,包括Activity、Service、BroadcastReceiver和ContentProvider。我们将通过代码示例,揭示这些组件如何协同工作,构建出功能强大且响应迅速的应用程序。无论你是初学者还是资深开发者,这篇文章都将为你提供新的视角和深度知识。
|
26天前
|
数据可视化 Android开发 开发者
安卓应用开发中的自定义View组件
【10月更文挑战第5天】在安卓应用开发中,自定义View组件是提升用户交互体验的利器。本篇将深入探讨如何从零开始创建自定义View,包括设计理念、实现步骤以及性能优化技巧,帮助开发者打造流畅且富有创意的用户界面。
58 0
|
3月前
|
供应链 物联网 区块链
未来触手可及:探索新兴技术的趋势与应用安卓开发中的自定义视图:从基础到进阶
【8月更文挑战第30天】随着科技的飞速发展,新兴技术如区块链、物联网和虚拟现实正在重塑我们的世界。本文将深入探讨这些技术的发展趋势和应用场景,带你领略未来的可能性。
|
1天前
|
搜索推荐 前端开发 Android开发
安卓应用开发中的自定义视图实现
【10月更文挑战第30天】在安卓开发的海洋中,自定义视图是那抹不可或缺的亮色,它为应用界面的个性化和交互体验的提升提供了无限可能。本文将深入探讨如何在安卓平台创建自定义视图,并展示如何通过代码实现这一过程。我们将从基础出发,逐步引导你理解自定义视图的核心概念,然后通过一个实际的代码示例,详细讲解如何将理论应用于实践,最终实现一个美观且具有良好用户体验的自定义控件。无论你是想提高自己的开发技能,还是仅仅出于对安卓开发的兴趣,这篇文章都将为你提供价值。
|
3天前
|
Android开发 开发者 UED
安卓开发中自定义View的实现与性能优化
【10月更文挑战第28天】在安卓开发领域,自定义View是提升应用界面独特性和用户体验的重要手段。本文将深入探讨如何高效地创建和管理自定义View,以及如何通过代码和性能调优来确保流畅的交互体验。我们将一起学习自定义View的生命周期、绘图基础和事件处理,进而探索内存和布局优化技巧,最终实现既美观又高效的安卓界面。
14 5
|
26天前
|
XML 前端开发 Java
安卓应用开发中的自定义View组件
【10月更文挑战第5天】自定义View是安卓应用开发的一块基石,它为开发者提供了无限的可能。通过掌握其原理和实现方法,可以创造出既美观又实用的用户界面。本文将引导你了解自定义View的创建过程,包括绘制技巧、事件处理以及性能优化等关键步骤。
|
1月前
|
测试技术 数据库 Android开发
深入解析Android架构组件——Jetpack的使用与实践
本文旨在探讨谷歌推出的Android架构组件——Jetpack,在现代Android开发中的应用。Jetpack作为一系列库和工具的集合,旨在帮助开发者更轻松地编写出健壮、可维护且性能优异的应用。通过详细解析各个组件如Lifecycle、ViewModel、LiveData等,我们将了解其原理和使用场景,并结合实例展示如何在实际项目中应用这些组件,提升开发效率和应用质量。
38 6
|
2月前
|
Android开发 开发者
安卓开发中的自定义视图:从入门到精通
【9月更文挑战第19天】在安卓开发的广阔天地中,自定义视图是一块充满魔力的土地。它不仅仅是代码的堆砌,更是艺术与科技的完美结合。通过掌握自定义视图,开发者能够打破常规,创造出独一无二的用户界面。本文将带你走进自定义视图的世界,从基础概念到实战应用,一步步展示如何用代码绘出心中的蓝图。无论你是初学者还是有经验的开发者,这篇文章都将为你打开一扇通往创意和效率的大门。让我们一起探索自定义视图的秘密,将你的应用打造成一件艺术品吧!
58 10
|
2月前
|
存储 开发框架 数据可视化
深入解析Android应用开发中的四大核心组件
本文将探讨Android开发中的四大核心组件——Activity、Service、BroadcastReceiver和ContentProvider。我们将深入了解每个组件的定义、作用、使用方法及它们之间的交互方式,以帮助开发者更好地理解和应用这些组件,提升Android应用开发的能力和效率。
142 5