转:http://www.eoeandroid.com/thread-114497-1-1.html
画直线效果图:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:layout_weight="1"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<Button android:id="@+id/length_btn"
android:layout_height="wrap_content"
android:text="画直线"
android:layout_width="wrap_content" />
<TextView android:text="画图区"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<com.android.draw.MyDrawView android:id="@+id/drawView"
android:layout_weight="1"
android:layout_height="fill_parent"
android:layout_width="fill_parent">
</com.android.draw.MyDrawView>
</LinearLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:layout_weight="1"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<Button android:id="@+id/clear_btn"
android:text="显示"
android:layout_height="wrap_content"
android:layout_width="wrap_content" />
<TextView android:text="显示画图区"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<ImageView android:id="@+id/imageView1"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_width="wrap_content" />
</LinearLayout>
import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.view.View;
import android.view.Window;
import android.widget.Button;
import android.widget.ImageView;
public class DrawActivity extends Activity {
static boolean drawFlag = false;
private Button showBtn;
private Button lineBtn;
private ImageView image;
private MyDrawView myDrawView;
private Bitmap bimap;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.main);
showBtn = (Button) findViewById(R.id.clear_btn);
lineBtn = (Button) findViewById(R.id.length_btn);
lineBtn.setOnClickListener(new MyClickEvent());
showBtn.setOnClickListener(new MyClickEvent());
image = (ImageView) findViewById(R.id.imageView1);
myDrawView = (MyDrawView) findViewById(R.id.drawView);
// 如果不用copy的方法,直接引用会对资源文件进行修改,而android是不允许在代码里修改res文件里的图片
bimap = BitmapFactory.decodeResource(getResources(),
R.drawable.background).copy(Bitmap.Config.ARGB_8888, true);
}
class MyClickEvent implements View.OnClickListener {
public void onClick(View v) {
if (v == lineBtn) {
// 传我们需要处理的bimap给画图类
myDrawView.setBitmap(bimap);
// 开始画图的标志
DrawActivity.drawFlag = true;
}
if (v == showBtn) {
// 显示图片
image.setImageBitmap(bimap);
}
}
}
}
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.widget.ImageView;
public class MyDrawView extends ImageView {
private float beginX = 0, beginY = 0, endX = 0, endY = 0;
private int eventFlag = 0;// 触屏事件点击
private Canvas canvasSelf;// 用于保存所画图像的画布
private Bitmap bimap;// 用于保存所画图像的图画
public void setBitmap(Bitmap b) {
bimap = b;
canvasSelf = new Canvas(bimap);
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
if (DrawActivity.drawFlag) {
Paint paint = new Paint();
/** 设置画笔 */
paint.setColor(Color.WHITE);
paint.setStyle(Paint.Style.STROKE);
paint.setAntiAlias(true);
// 把之前画出来保存后的图再画出来
canvas.drawBitmap(bimap, 0, 0, null);
// 画中间长得线段
canvas.drawLine(beginX, beginY, endX, endY, paint);
if (eventFlag == MotionEvent.ACTION_UP) {
// 这里将直线画到canvasself上,它就保存在了bimap这张图上
canvasSelf.drawLine(beginX, beginY, endX, endY, paint);
}
}
}
@Override
public boolean onTouchEvent(MotionEvent event) {
endX = event.getX();
endY = event.getY();
switch (event.getAction()) {
case MotionEvent.ACTION_DOWN:
eventFlag = MotionEvent.ACTION_DOWN;
beginX = endX;
beginY = endY;
invalidate();
break;
case MotionEvent.ACTION_MOVE:
eventFlag = MotionEvent.ACTION_MOVE;
invalidate();
break;
case MotionEvent.ACTION_UP:
eventFlag = MotionEvent.ACTION_UP;
invalidate();
break;
}
return true;
}
/**
* 在XML中使用自定义View必须要使用含AttributeSet变量参数的构造函数
* @param context
* @param attrs
*/
public MyDrawView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public MyDrawView(Context context) {
super(context);
}
}
- 大小: 37.3 KB
分享到:
相关推荐
bimap-rs bimap-rs是Rust的双向双向射影地图实现。 用法安装要在您的Rust项目中使用bimap-rs,请将以下内容添加到bimap-rs中:bimap-rs是Rust的双向双向图实现。 用法安装要在您的Rust项目中使用bimap-rs,请将以下...
3. **算法与数据结构**:Boost包含许多高效的数据结构(如`boost::bimap`双向映射)和算法,可以用于优化数据处理和搜索性能。 4. **序列化**:`boost::serialization`库可以帮助序列化和反序列化对象,方便数据...
var bimap = new BiMap bimap . push ( "key" , "value" ) ; bimap . key ( "key" ) ; // => "value" bimap . val ( "value" ) ; // => "key" bimap . push ( "France" , [ "Paris" , "Lyon" , "Marseille" ] ) ; ...
let mut bimap = Bimap::new(); bimap.insert_left("Alice", 1); bimap.insert_left("Bob", 2); assert_eq!(bimap.get_left(&1), Some("Alice")); assert_eq!(bimap.get_right(&"Bob"), Some(2)); bimap...
本文将详细介绍如何在Android应用中处理`Bitmap` 和`Drawable` 的各种操作。 #### 二、相关概念 - **Drawable**:在Android中表示一个可绘制的对象,它可以是位图、图形或图层。 - **Canvas**:表示画布,是绘图的...
在Android开发中,图片资源的处理是常见的需求之一,涉及到多种数据类型之间的转换,包括`Drawable`、`Bitmap`、`byte[]`等。本文将详细介绍这些类型之间的转换方法,以及如何实现灰度图像的转换。 ### 1. `...
**Elixir-Bimap:双向地图与多地图的深入理解** 在Elixir编程语言中,数据结构的选择对于编写高效且可维护的代码至关重要。Elixir-Bimap库提供了一种独特的方法来处理键值对,它引入了双向映射(Bimap)和多映射...
在Android开发中,图片资源的处理是常见的需求之一,尤其涉及到不同格式间的转换,如Drawable、Bitmap、byte数组以及灰度图像的转换。这些转换在实际应用中具有重要意义,不仅能够优化内存使用,还能实现图像的高效...
3. Boost.Bimap:提供双向关联容器,boost::bimap。 4. Boost.Bind:提供函数绑定功能,boost::bind。 5. Boost.Conversion:提供类型转换功能。 6. Boost.DateTime:提供日期和时间的处理功能。 7. Boost.Exception...
在Android应用开发过程中,经常需要对图像资源进行处理,这就涉及到了不同图像格式之间的转换。本文将详细介绍`Drawable`、`Bitmap`及`byte[]`三者之间的转换方法,并提供具体的实现代码。 #### 1. Drawable转...
1. **容器与数据结构**:包括动态数组(`boost::array`)、多维数组(`boost::multi_array`)、智能指针(如`boost::shared_ptr`和`boost::unique_ptr`)以及关联容器如`boost::bimap`等。这些容器提供了一种高效且...
你可以把Drawable或者Bitmap对象画到Canvas上,通过Canvas的各种绘图方法,如drawBitmap()、drawRect()等,可以在Canvas上实现复杂的图像处理。 Matrix是一个矩阵类,用于图像的变换,如缩放、旋转、平移等。在处理...
在Android开发过程中,Bitmap是处理图像数据的核心类之一,它主要用于表示和操作位图。本文将从Bitmap的基本概念出发,详细介绍Bitmap在Android中的应用方式、转换技巧及优化策略等。 #### 一、Bitmap基本概念 ...
然而,"Android port of Boost C++ Libraries.zip" 是一个专门为Android平台优化的Boost库版本,使得开发者能够在Android应用中利用Boost的强大功能。 这个移植版的Boost库可能包含了对Android NDK(Native ...
bitmapToDrawable(Bitmap b) bimap转换为drawable drawableToBitmap(Drawable d) drawable转换为bitmap drawableToByte(Drawable d) drawable转换为byte scaleImage(Bitmap org, float scaleWidth, float ...
在Android开发中,Bitmap是用于处理图像的基本类,它提供了对像素级别的操作。Bitmap对象可以用来显示图片,进行图像处理,以及与各种图形资源(如Drawable)之间转换。以下是对给定文件中涉及的Android Bitmap用法...
在Android开发中,有时我们需要将应用内部的图片资源保存到外部存储(如SD卡),以便于用户在应用之外访问或备份。本篇文章将详细讲解如何从Android应用的`Assets`目录中读取图片资源并保存到SD卡上。首先,我们要...
4. **并行流处理**:在Java 8及更高版本中,`Maps`类提供了支持流操作的方法,如`asMap()`,可以将映射转换为流,然后利用并行流进行高效处理,这对于大数据场景尤其有价值。 5. **多值映射**:`Multimap`接口允许...
Guava Collections 是 Google 的工程师 Kevin Bourrillion 和 Jared Levy 创作的一个开源库,利用他们在公司内部“20%”自由时间开发的成果。这个库是对 Java Collections Framework 的一个增强和扩展,旨在提供更...
在Android开发中,Drawable和Bitmap是两种常用的图像处理对象,它们各有不同的特性和用途。Drawable是Android图形库中一个抽象接口,它包含了多种类型的图像表示,如颜色、形状、位图等,而Bitmap则直接代表像素数据...