Android控件架构与自定义控件详解

activity_main.xml</br>

<pre><LinearLayout 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:orientation="vertical"
android:padding="16dp"
tools:context=".MainActivity">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="btnTeaching"
android:text="Teaching" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="btnTopBar"
android:text="TopBar" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="btnMyTextView"
android:text="MyTextView" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="btnShineTextView"
android:text="ShineTextView" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="btnCircleProgress"
android:text="CircleProgress" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="btnVolumeView"
android:text="VolumeView" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="btnMyScrollView"
android:text="MyScrollView" />
</LinearLayout>
</pre>

MainActiviy</br>

<pre>
package com.imooc.systemwidget;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
public class MainActivity extends Activity {
private Intent mIntent;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mIntent = new Intent(this, MyViewTest.class);
}
public void btnTeaching(View view) {
mIntent.putExtra("flag", 0);
startActivity(mIntent);
}
public void btnMyTextView(View view) {
mIntent.putExtra("flag", 1);
startActivity(mIntent);
}

public void btnShineTextView(View view) {
    mIntent.putExtra("flag", 2);
    startActivity(mIntent);
}

public void btnCircleProgress(View view) {
    mIntent.putExtra("flag", 3);
    startActivity(mIntent);
}

public void btnVolumeView(View view) {
    mIntent.putExtra("flag", 4);
    startActivity(mIntent);
}

public void btnMyScrollView(View view) {
    mIntent.putExtra("flag", 5);
    startActivity(mIntent);
}

public void btnTopBar(View view) {
    startActivity(new Intent(this, TopBarTest.class));
}

}

</pre>

MyViewTest</br>

<pre>
package com.imooc.systemwidget;
import android.app.Activity;
import android.os.Bundle;
public class MyViewTest extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
int flag = getIntent().getIntExtra("flag", -1);
switch (flag) {
case 0:
setContentView(R.layout.teaching);
break;
case 1:
setContentView(R.layout.my_textview);
break;
case 2:
setContentView(R.layout.shine_textview);
break;
case 3:
setContentView(R.layout.circle_progress);
CircleProgressView circle = (CircleProgressView) findViewById(R.id.circle);
circle.setSweepValue(0);
break;
case 4:
setContentView(R.layout.volume);
break;
case 5:
setContentView(R.layout.my_scrollview);
break;
}
}
}
</pre>

1、Teaching

</br>


  1.1、teaching.xml
<pre>
<?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"
android:orientation="vertical">
<com.imooc.systemwidget.TeachingView
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</pre>
  1.2、TeachingView
<pre>package com.imooc.systemwidget;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.util.AttributeSet;
import android.util.Log;
import android.view.View;
public class TeachingView extends View {
public TeachingView(Context context) {
super(context);
}
public TeachingView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public TeachingView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
//查看super.onMeasure方法,可以发现,系统
//最终会调用setMeasuredDimension(int measuredWidth,intmeasuredHeight())方法
//将测量后的宽高值设置进去,从而完成测量工作,这里重写onMeasure()方法后,最终要
//做的工作就是把测量后的宽高值作为参数设置给setMeasureDimension()方法。
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
setMeasuredDimension(
measureWidth(widthMeasureSpec),
measureHeight(heightMeasureSpec));
}
//通过判断测量的模式,给出不同的测量值,这里求宽度
private int measureWidth(int measureSpec) {
int result = 0;
int specMode = MeasureSpec.getMode(measureSpec);
int specSize = MeasureSpec.getSize(measureSpec);
if (specMode == MeasureSpec.EXACTLY) {
result = specSize;
} else {
result = 200;
if (specMode == MeasureSpec.AT_MOST) {
//Math.min() 方法是通过三元运算符实现的,这里求最小值。
result = Math.min(result, specSize);
}
}
return result;
}
//通过判断测量的模式,给出不同的测量值,这里求高度
private int measureHeight(int measureSpec) {
int result = 0;
int specMode = MeasureSpec.getMode(measureSpec);
int specSize = MeasureSpec.getSize(measureSpec);
if (specMode == MeasureSpec.EXACTLY) {
result = specSize;
} else {
result = 200;
if (specMode == MeasureSpec.AT_MOST) {
result = Math.min(result, specSize);
}
}
return result;
}
@Override
protected void onDraw(Canvas canvas) {
//执行整个操作来完成你的绘图
super.onDraw(canvas);
//填充整个画布的位图,Color.GRAY是灰色
canvas.drawColor(Color.GRAY);
int width = getWidth();
int height = getHeight();
Log.d("xys", "width : " + width + " height : " + height);
}
}
</pre>

</br>

2、MyTextView

</br>


  2.1、my_textview.xml
<pre>
<?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"
android:orientation="vertical">
<com.imooc.systemwidget.MyTextView
android:layout_width="200dp"
android:layout_height="50dp"
android:gravity="center"
android:text="Android"
android:textSize="30sp" />
</LinearLayout>
</pre></br>
  2.2、MyTextView
<pre>
package com.imooc.systemwidget;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.util.AttributeSet;
import android.widget.TextView;
public class MyTextView extends TextView {
private Paint mPaint1, mPaint2;
public MyTextView(Context context) {
super(context);
initView();
}
public MyTextView(Context context, AttributeSet attrs) {
super(context, attrs);
initView();
}
public MyTextView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
initView();
}
private void initView() {
//创建带有默认设置的新绘图
mPaint1 = new Paint();
//天蓝色
mPaint1.setColor(getResources().getColor(android.R.color.holo_blue_light));
mPaint1.setStyle(Paint.Style.FILL);
mPaint2 = new Paint();
//黄色
mPaint2.setColor(Color.YELLOW);
mPaint2.setStyle(Paint.Style.FILL);
}
@Override
protected void onDraw(Canvas canvas) {
// 绘制外层矩形,使用指定的油漆绘制指定的矩形。矩形将根据颜料的风格填充或镶框。
canvas.drawRect(
//绘制矩形的左边
0,
//绘制矩形的顶部
0,
//绘制矩形的右边,获取这个视图的原始宽度。
getMeasuredWidth(),
//绘制矩形的底部
getMeasuredHeight(),
//用来绘制矩形的油漆
mPaint1);
// 绘制内层矩形
canvas.drawRect(
10,
10,
getMeasuredWidth() - 10,
getMeasuredHeight() - 10,
mPaint2);
//将当前的矩阵和剪辑保存到一个私有堆栈中。
//随后调用转换、缩放、旋转、倾斜、concat或clipRect,clipPath将照常运行,
//但是当恢复平衡调用时,这些调用将被忘记,
//并且在save()之前存在的设置将被恢复。
canvas.save();
// 绘制文字前向右平移150像素,向下平移50像素。
canvas.translate(150, 50);
// 父类完成的方法,即绘制文本
super.onDraw(canvas);
//这个调用平衡了之前的save()调用,
//并且用于删除自上次保存调用以来对矩阵/ clip状态的所有修改。
//调用恢复()的次数比调用save()的次数要多。
canvas.restore();
}
}
</pre>

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

推荐阅读更多精彩内容