Android studio实现画板功能
作者:假快乐 时间:2022-08-04 21:30:39
简单概述
在日常生活中,我们经常会突发一些奇思妙想,或是一个画面,或是几个符号。这时候无法使用拍照或者打字功能实现,想拿笔记下又身边找不到笔。于是我琢磨能不能做一个手机端的画板。
效果图
实现过程
项目布局很简单
让我们来看代码:首先声明画笔,画板,和坐标
public class MainActivity extends AppCompatActivity{
Paint paint;
Canvas canvas;
ImageView imageview;
Bitmap bitmap,newbitmap;
TextView tv_stroke;
int startX, startY, endX, endY;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_my_paint_tools);
LinearLayout ll_layout = findViewById(R.id.ll_layout);
RadioGroup rg_color = findViewById(R.id.rg_color);
遍历单选按钮,当单选按钮选中时,获取单选按钮颜色并将画笔颜色设置当前按钮的文本颜色,最后注意要设置画笔宽度,以免在后面点橡皮擦的时候画笔宽度调不回来
for (int i = 0;i<rg_color.getChildCount();i++){
RadioButton rb = (RadioButton) rg_color.getChildAt(i);
rb.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if (buttonView.isChecked()){
paint.setColor(buttonView.getTextColors().getDefaultColor());
paint.setStrokeWidth(5);
}
}
});
}
首先创建一张空白图片和一张灰色画布,将图片放在画布上面
注册触摸监听事件,获取鼠标按下时的坐标和鼠标移动后的坐标。在开始和结束之间画一条直线并更新画布图片
imageview.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
switch(event.getAction()){
case MotionEvent.ACTION_DOWN:
Log.i("MyPaintToolsActivity","ACTION_DOWN");
startX = (int) (event.getX()/1.4);
startY = (int) (event.getY()/1.4);
break;
case MotionEvent.ACTION_MOVE:
Log.i("MyPaintToolsActivity","ACTION_MOVE");
endX = (int) (event.getX()/1.4);
endY = (int) (event.getY()/1.4);
canvas.drawLine(startX,startY,endX,endY,paint);
startX = (int) (event.getX()/1.4);
startY = (int) (event.getY()/1.4);
imageview.setImageBitmap(bitmap);
break;
case MotionEvent.ACTION_UP:
Log.i("MyPaintToolsActivity","ACTION_UP");
break;
}
imageview.invalidate();
return true;
}
});
清屏的话就一行代码 ,剩下的是重新生成一块画布
Button btn_clear = findViewById(R.id.btn_clear);
btn_clear.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
canvas.drawColor(0,PorterDuff.Mode.CLEAR);
bitmap = Bitmap.createBitmap(888,1200,Bitmap.Config.ARGB_8888);
canvas = new Canvas(bitmap);
canvas.drawColor(Color.argb(100,0,0,0));
paint = new Paint();
paint.setStrokeWidth(5);
paint.setAntiAlias(true);
paint.setColor(Color.RED);
canvas.drawBitmap(bitmap,new Matrix(),paint);
imageview.setImageBitmap(bitmap);
}
});
呃,这里会把画布擦掉…也就是擦成白色…
最后看看页面布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:id="@+id/ll_layout">
<!-- tools:context=".MyPaintToolsActivity">-->
<ImageView
android:id="@+id/imageview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1" />
<RadioGroup
android:background="#747373"
android:layout_width="match_parent"
android:orientation="horizontal"
android:id="@+id/rg_color"
android:layout_height="wrap_content">
<RadioButton
android:id="@+id/rb_red"
android:layout_width="wrap_content"
android:layout_height="43dp"
android:layout_weight="1"
android:text="红色"
android:textColor="#FF0000"
android:textSize="18sp" />
<RadioButton
android:id="@+id/rb_green"
android:layout_width="wrap_content"
android:layout_height="30dp"
android:layout_weight="1"
android:text="黑色"
android:textColor="#000000"
android:textSize="18sp" />
<RadioButton
android:id="@+id/rb_blue"
android:layout_width="wrap_content"
android:layout_height="30dp"
android:layout_weight="1"
android:text="白色"
android:textColor="#FFFFFF"
android:textSize="18sp" />
</RadioGroup>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal">
<Button
android:id="@+id/btn_clear"
android:layout_width="wrap_content"
android:layout_weight="1"
android:layout_height="wrap_content"
android:background="#000000"
android:textColor="#FFFFFF"
android:textSize="18sp"
android:text="清除"/>
<Button
android:id="@+id/btn_eraser"
android:layout_width="wrap_content"
android:layout_weight="1"
android:layout_height="wrap_content"
android:textColor="#FFFFFF"
android:textSize="18sp"
android:background="#000000"
android:text="擦除"/>
</LinearLayout>
</LinearLayout>
来源:https://blog.csdn.net/weixin_44470908/article/details/112095504
标签:Android,studio,画板
0
投稿
猜你喜欢
c# base64转字符串实例
2021-06-25 01:47:54
Android 全局Dialog的简单实现方法
2021-06-28 10:14:40
kotlin浅析when与循环的使用
2022-01-13 01:23:57
jackson反序列化时如何忽略不需要的字段
2021-09-26 20:36:20
Spring @Conditional通过条件控制bean注册过程
2023-08-06 10:00:11
Mybatis关联查询结果集对象嵌套的具体使用
2021-07-12 22:09:18
怎么把本地jar包放入本地maven仓库和远程私服仓库
2023-12-05 20:13:00
Spring Boot conditional注解用法详解
2022-03-19 02:32:25
揭秘在ListView等AdapterView上动态添加删除项的陷阱
2022-11-26 16:02:27
java 注解默认值操作
2023-08-25 20:31:38
Android利用Intent.ACTION_SEND进行分享
2023-07-10 05:02:18
详解C# Lazy Loading(延迟加载)
2021-09-02 03:02:58
C# 面向对象三大特性:封装、继承、多态
2022-09-15 17:00:53
关于Spring MVC在Controller层中注入request的坑详解
2023-08-24 11:15:43
Java 创建两个线程模拟对话并交替输出实现解析
2022-01-10 02:37:02
Java的动态绑定与双分派_动力节点Java学院整理
2021-07-14 11:18:50
使用Spring Expression Language (SpEL)全面解析表达式
2021-11-19 08:07:10
Spring使用xml方式整合第三方框架流程详解
2022-07-05 10:50:03
详解处理Java中的大对象的方法
2021-08-06 23:06:11
短网址的原理与生成方法(Java实现)
2022-04-14 11:29:19