Androidstudio实现画板功能
⽬录
简单概述
实现过程
简单概述
在⽇常⽣活中,我们经常会突发⼀些奇思妙想,或是⼀个画⾯,或是⼏个符号。这时候⽆法使⽤拍照或者打字功能实现,想拿笔记下⼜⾝边不到笔。于是我琢磨能不能做⼀个⼿机端的画板。
效果图
实现过程
项⽬布局很简单
让我们来看代码:⾸先声明画笔,画板,和坐标
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) {
setContentView(R.layout.activity_my_paint_tools);
LinearLayout ll_layout = findViewById(R.id.ll_layout);
RadioGroup rg_color = findViewById(_color);
遍历单选按钮,当单选按钮选中时,获取单选按钮颜⾊并将画笔颜⾊设置当前按钮的⽂本颜⾊,最后注意要设置画笔宽度,以免在后⾯点橡⽪擦的时候画笔宽度调不回来
for (int i = 0;i<ChildCount();i++){
RadioButton rb = (RadioButton) ChildAt(i);
rb.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if (buttonView.isChecked()){
paint.TextColors().getDefaultColor());
paint.setStrokeWidth(5);
}
}
});
}
⾸先创建⼀张空⽩图⽚和⼀张灰⾊画布,将图⽚放在画布上⾯
注册触摸监听事件,获取⿏标按下时的坐标和⿏标移动后的坐标。在开始和结束之间画⼀条直线并更新画布图⽚
imageview.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
Action()){
case MotionEvent.ACTION_DOWN:
Log.i("MyPaintToolsActivity","ACTION_DOWN");
startX = (int) (X()/1.4);
startY = (int) (Y()/1.4);
break;
case MotionEvent.ACTION_MOVE:
Log.i("MyPaintToolsActivity","ACTION_MOVE");
endX = (int) (X()/1.4);
endY = (int) (Y()/1.4);
canvas.drawLine(startX,startY,endX,endY,paint);
startX = (int) (X()/1.4);
startY = (int) (Y()/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 = ateBitmap(888,1200,Bitmap.Config.ARGB_8888); canvas = new Canvas(bitmap);
canvas.drawColor(Color.argb(100,0,0,0));
paint = new Paint();
android radiogrouppaint.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="schemas.android/apk/res/android" xmlns:app="schemas.android/apk/res-auto"
xmlns:tools="schemas.android/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>
到此这篇关于Android studio实现画板功能的⽂章就介绍到这了,更多相关Android studio画板功能内容请搜索以前的⽂章或继续浏览下⾯的相关⽂章希望⼤家以后多多⽀持!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论