本文来自http://blog.csdn.net/hellogv/ ,引用必须注明出处!
常用控件说了不少,现在说说手机开发中也常用到的画图。要掌握Android的画图,首先就要了解一下,基本用到的图形接口:
1.Bitmap,可以来自资源/文件,也可以在程序中创建,实际上的功能相当于图片的存储空间;
2.Canvas,紧密与Bitmap联系,把Bitmap比喻内容的话,那么Canvas就是提供了众多方法操作Bitamp的平台;
3.Paint,与Canvas紧密联系,是"画板"上的笔刷工具,也用于设置View控件上的样式;
4.Drawable,如果说前三者是看不见地在内存中画图,那么Drawable就是把前三者绘图结果表现出来的接口。Drawable多个子类,例如:位图(BitmapDrawable)、图形(ShapeDrawable)、图层(LayerDrawable)等。
本文主要讲解如何在ImageView画图,以及如何直接在Button(继承View的控件)上面绘制自定义图像。
直接把资源图片画出来
在ImageView上画图以及绘字
直接在控件背景上画图
main.xml的源码:
- <?xml version="1.0" encoding="utf-8"?>
-
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-
android:orientation="vertical"
-
android:layout_width="fill_parent"
-
android:layout_height="fill_parent"
- >
-
<Button android:id="@+id/Button01" android:layout_width="fill_parent" android:layout_height="44px" android:text="显示资源图片"></Button>
-
<Button android:id="@+id/Button02" android:layout_width="fill_parent" android:layout_height="44px" android:text="显示并绘画资源图片"></Button>
-
<Button android:id="@+id/Button03" android:layout_height="44px" android:layout_width="fill_parent" android:text="在控件上绘图"></Button>
-
<ImageView android:id="@+id/ImageView01" android:layout_width="wrap_content" android:layout_height="wrap_content"></ImageView>
-
- </LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<Button android:id="@+id/Button01" android:layout_width="fill_parent" android:layout_height="44px" android:text="显示资源图片"></Button>
<Button android:id="@+id/Button02" android:layout_width="fill_parent" android:layout_height="44px" android:text="显示并绘画资源图片"></Button>
<Button android:id="@+id/Button03" android:layout_height="44px" android:layout_width="fill_parent" android:text="在控件上绘图"></Button>
<ImageView android:id="@+id/ImageView01" android:layout_width="wrap_content" android:layout_height="wrap_content"></ImageView>
</LinearLayout>
程序的源码:
- package com.testDraw;
-
-
import android.app.Activity;
-
import android.content.res.Resources;
-
import android.graphics.Bitmap;
-
import android.graphics.Bitmap.Config;
-
import android.graphics.BitmapFactory;
-
import android.graphics.Canvas;
-
import android.graphics.Color;
-
import android.graphics.Paint;
-
import android.graphics.Typeface;
-
import android.graphics.drawable.BitmapDrawable;
-
import android.graphics.drawable.Drawable;
-
import android.os.Bundle;
-
import android.view.View;
-
import android.widget.Button;
-
import android.widget.ImageView;
-
-
public class testDraw extends Activity {
-
- ImageView iv;
- Button btn1,btn2,btn3,btn4;
- Resources r;
-
@Override
-
public void onCreate(Bundle savedInstanceState) {
-
super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
-
iv=(ImageView)this.findViewById(R.id.ImageView01);
-
btn1=(Button)this.findViewById(R.id.Button01);
-
btn2=(Button)this.findViewById(R.id.Button02);
-
btn3=(Button)this.findViewById(R.id.Button03);
-
-
btn1.setOnClickListener(new ClickEvent());
-
btn2.setOnClickListener(new ClickEvent());
-
btn3.setOnClickListener(new ClickEvent());
-
-
r = this.getResources();
-
-
- }
-
class ClickEvent implements View.OnClickListener {
-
-
public void onClick(View v) {
-
if(v==btn1)
-
{
-
-
Bitmap bmp=BitmapFactory.decodeResource(r, R.drawable.icon);
- iv.setImageBitmap(bmp);
- }
-
else if(v==btn2)
- {
-
Bitmap bmp=BitmapFactory.decodeResource(r, R.drawable.icon);
-
Bitmap newb = Bitmap.createBitmap( 300, 300, Config.ARGB_8888 );
-
-
Canvas canvasTemp = new Canvas( newb );
- canvasTemp.drawColor(Color.TRANSPARENT);
-
-
Paint p = new Paint();
-
String familyName ="宋体";
- Typeface font = Typeface.create(familyName,Typeface.BOLD);
- p.setColor(Color.RED);
- p.setTypeface(font);
-
p.setTextSize(22);
-
canvasTemp.drawText("写字。。。",50,50,p);
-
canvasTemp.drawBitmap(bmp, 50, 50, p);
- iv.setImageBitmap(newb);
- }
-
else if(v==btn3)
- {
- Bitmap newb = Bitmap.createBitmap( btn3.getWidth(), btn3.getHeight(), Config.ARGB_8888 );
-
Canvas canvasTemp = new Canvas( newb );
- canvasTemp.drawColor(Color.WHITE);
-
Paint p = new Paint();
-
String familyName = "宋体";
- Typeface font = Typeface.create(familyName, Typeface.BOLD);
- p.setColor(Color.RED);
- p.setTypeface(font);
-
p.setTextSize(20);
-
canvasTemp.drawText("写字。。。", 30, 30, p);
-
Drawable drawable = new BitmapDrawable(newb);
- btn3.setBackgroundDrawable(drawable);
- }
- }
-
- }
-
- }
package com.testDraw;
import android.app.Activity;
import android.content.res.Resources;
import android.graphics.Bitmap;
import android.graphics.Bitmap.Config;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Typeface;
import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
public class testDraw extends Activity {
ImageView iv;
Button btn1,btn2,btn3,btn4;
Resources r;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
iv=(ImageView)this.findViewById(R.id.ImageView01);
btn1=(Button)this.findViewById(R.id.Button01);
btn2=(Button)this.findViewById(R.id.Button02);
btn3=(Button)this.findViewById(R.id.Button03);
btn1.setOnClickListener(new ClickEvent());
btn2.setOnClickListener(new ClickEvent());
btn3.setOnClickListener(new ClickEvent());
r = this.getResources();
}
class ClickEvent implements View.OnClickListener {
public void onClick(View v) {
if(v==btn1)//显示资源图片
{//功能等效
//iv.setBackgroundResource(R.drawable.icon);//打开资源图片
Bitmap bmp=BitmapFactory.decodeResource(r, R.drawable.icon);//打开资源图片
iv.setImageBitmap(bmp);
}
else if(v==btn2)//显示并绘画资源图片
{
Bitmap bmp=BitmapFactory.decodeResource(r, R.drawable.icon);//只读,不能直接在bmp上画
Bitmap newb = Bitmap.createBitmap( 300, 300, Config.ARGB_8888 );
Canvas canvasTemp = new Canvas( newb );
canvasTemp.drawColor(Color.TRANSPARENT);
Paint p = new Paint();
String familyName ="宋体";
Typeface font = Typeface.create(familyName,Typeface.BOLD);
p.setColor(Color.RED);
p.setTypeface(font);
p.setTextSize(22);
canvasTemp.drawText("写字。。。",50,50,p);
canvasTemp.drawBitmap(bmp, 50, 50, p);//画图
iv.setImageBitmap(newb);
}
else if(v==btn3)//直接在Button上绘图
{
Bitmap newb = Bitmap.createBitmap( btn3.getWidth(), btn3.getHeight(), Config.ARGB_8888 );
Canvas canvasTemp = new Canvas( newb );
canvasTemp.drawColor(Color.WHITE);
Paint p = new Paint();
String familyName = "宋体";
Typeface font = Typeface.create(familyName, Typeface.BOLD);
p.setColor(Color.RED);
p.setTypeface(font);
p.setTextSize(20);
canvasTemp.drawText("写字。。。", 30, 30, p);
Drawable drawable = new BitmapDrawable(newb);
btn3.setBackgroundDrawable(drawable);
}
}
}
}
相关推荐
GaussView 画图技巧 GaussView 画图技巧是指在GaussView软件中使用的各种技巧来绘制和编辑化学结构图。这些技巧包括变形工具、加氢工具、点群工具、显示坐标轴、添加虚原子、删除虚原子、晶体工具等。 变形工具是...
在Word中进行图形绘制是许多用户,特别是教育工作者在制作文档时常...熟练掌握这些Word画图技巧,将极大地提升在文档中绘制数学图形的效率,使工作更加得心应手。不论是教师制作课件,还是学生整理笔记,都能事半功倍。
【标题】:“AUTOCAD画图技巧” 【描述】:“在word中插入AUTOCAD图形,快捷键方法,表格制作,线宽修改” 【标签】:“快捷键 AUTOCAD” 【正文】: AutoCAD是一款广泛使用的专业绘图软件,尤其在建筑设计、...
3. MATLAB_画图技巧: - 使用`hold on`和`hold off`来控制是否在当前图形上继续绘制新的数据。 - `xlabel`, `ylabel`, `title`用于设置坐标轴标签和图形标题。 - `xlim`和`ylim`调整坐标轴范围,`xlim([xmin xmax...
CAD 比例画图技巧 CAD 比例画图技巧对比例的设置,一般有三个方法。第一个方法是根据要打印的图纸大小确定比例。例如,A2 图纸大小是420mm×594mm,要在这个图纸上画一个图形,需要计算出合适的比例。假设需要的...
Visio 绝版画图技巧 Visio 是一个功能强大且灵活的绘图软件,广泛应用于绘制组织结构图、流程图、网络拓扑图、软件设计图、数据库设计图等。然而,很多用户在使用 Visio 时都会遇到一些问题和困惑,这篇文章将总结...
掌握CAD的画图技巧对于提高绘图效率和质量有着至关重要的作用。以下是从给定文件内容中提取出的有关AutoCAD画图技巧的知识点: 1. 基础操作和快捷命令: AutoCAD的操作主要依赖于命令行输入,熟练使用快捷命令能...
本文将详细介绍MATLAB中的各种画图技巧。 首先,我们来看基础的二维作图命令`plot`,它可以用来绘制x-y坐标图。例如,`plot(1,1,'r.','markersize',50)`会在坐标点(1,1)处画一个红色的小圆,`markersize`参数决定了...
visio画图技巧.doc
本文将深入探讨MATLAB中的几种关键画图技巧和函数,帮助用户更好地理解和掌握如何利用MATLAB进行高效绘图。 首先,MATLAB提供了多种函数来创建不同类型的图形。在平面分图的位置设置上,`subplot(nmj)`函数非常实用...
这篇文档详细介绍了MATLAB中的各种画图技巧,包括基本的线性图、线型和颜色控制、对数图、极坐标图以及条形图等。 首先,`plot`函数是MATLAB中最基本的绘图命令,用于绘制线性图。例如,当`y`是一个向量时,`plot(y...
Visio 画图技巧参考 Visio 是一个功能强大且广泛应用于绘图和流程设计的软件,但是在实际操作中,许多用户都会遇到一些常见的问题和挑战,本文将总结和解决一些常见的问题和技巧,旨在帮助用户更好地使用 Visio ...
cad比例画图技巧.doc
这篇文档主要介绍了MATLAB的一些基本画图技巧,包括线性图的绘制、图形的装饰、多线图的绘制、线型和颜色的控制、对数图、极坐标图、条形图以及更复杂的图形功能。 首先,当你有一个向量`y`,比如`y=[0., 0.48, ...
### MATLAB画图技巧详解 #### 一、MATLAB画图基础设置 在使用MATLAB进行图形绘制时,有一些基础的设置对于确保图表清晰且易于理解至关重要。这些设置包括但不限于坐标轴范围的调整、多图共存以及不同类型的图表...
本文主要介绍了MATLAB中的一些基本画图技巧,包括不同类型的坐标图以及如何控制线型、颜色和添加注释。 首先,MATLAB提供了多种绘图命令来适应不同的图表需求。`plot`是最常用的命令,用于绘制x-y坐标图。例如,`...
这篇文档详细介绍了MATLAB中的各种画图技巧,包括基本的二维作图、线型和颜色控制、以及特殊类型的图表,如对数图、极坐标图和条形图。下面将对这些内容进行详细阐述。 首先,MATLAB的基本绘图命令`plot`用于绘制x-...