<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
本文範例為大家分享了Android自定義View實現簡易畫板的具體程式碼,供大家參考,具體內容如下
自定義VIew實現簡易畫板效果,功能包括清空、選擇顏色,選擇大小,效果如下
畫板佈局:
<?xml version="1.0" encoding="utf-8"?> <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:gravity="center" android:orientation="vertical" tools:context=".MainActivity"> <!-- 這是一個自定義組合控制元件,包含塗鴉板及右邊三個按鈕 --> <com.android.mytest.GraffitiBroadLayout android:layout_width="match_parent" android:layout_height="match_parent" /> </LinearLayout>
自定義view GraffitiBroadLayout 佈局檔案 view_graffiti.xml:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal" android:baselineAligned="false"> <!-- 自定義塗鴉板View --> <com.android.mytest.GraffitiView android:id="@+id/graffiti_view" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal" /> <androidx.recyclerview.widget.RecyclerView android:id="@+id/recycler_view" android:visibility="gone" android:layout_gravity="right" android:layout_marginRight="100dp" android:layout_width="80dp" android:layout_height="wrap_content"/> <!-- 右側三個按鈕 清空、顏色、粗細 --> <LinearLayout android:layout_gravity="right" android:orientation="vertical" android:layout_width="100dp" android:layout_height="match_parent"> <Button android:id="@+id/clear_all" android:layout_width="match_parent" android:layout_height="wrap_content"/> <Button android:id="@+id/select_color" android:layout_width="match_parent" android:layout_height="wrap_content"/> <Button android:id="@+id/select_size" android:layout_width="match_parent" android:layout_height="wrap_content"/> </LinearLayout> </FrameLayout>
畫板佈局中包括一個 自定義塗鴉view,recyclerView用於顯示選擇顏色、大小,三個按鈕,分別是:
清空、選擇顏色、選擇大小
// 繼承LinearLayout public class GraffitiBroadLayout extends LinearLayout { private final int[] colors = {R.color.red,R.color.green,R.color.blue};// 顏色陣列 private final int[] sizes = {5,10,15,20};// 畫筆size陣列 private Context mContext; private View mView; private GraffitiView mGraffitiView; private RecyclerView mRecyclerView; public GraffitiBroadLayout(Context context) { super(context); } public GraffitiBroadLayout(Context context, @Nullable AttributeSet attrs) { super(context, attrs); mContext = context; // 獲取佈局View mView = LayoutInflater.from(context).inflate(R.layout.view_graffiti, this,true); initView();// 初始化並設定點選事件 } private void initView() { Button clearAllBtn = mView.findViewById(R.id.clear_all); Button selectColorBtn = mView.findViewById(R.id.select_color); Button selectSizeBtn = mView.findViewById(R.id.select_size); mGraffitiView = mView.findViewById(R.id.graffiti_view); mRecyclerView = mView.findViewById(R.id.recycler_view); mRecyclerView.setLayoutManager(new LinearLayoutManager(mContext)); // 點選清空 畫板 clearAllBtn.setOnClickListener(v -> mGraffitiView.clearAllPath()); // 選擇畫筆顏色 selectColorBtn.setOnClickListener(v -> { GraffitiAdapter adapter = new GraffitiAdapter(mContext,colors,1); mRecyclerView.setAdapter(adapter); mRecyclerView.setVisibility(VISIBLE); }); // 選擇畫筆大小 selectSizeBtn.setOnClickListener(v -> { GraffitiAdapter adapter = new GraffitiAdapter(mContext,sizes,2); mRecyclerView.setAdapter(adapter); mRecyclerView.setVisibility(VISIBLE); }); } // 自定義adapter class GraffitiAdapter extends RecyclerView.Adapter<GraffitiViewHolder>{ Context mContext; int[] cs; int type;// 用於判斷顯示顏色 還是 選擇大小 public GraffitiAdapter(Context mContext, int[] cs,int type) { this.mContext = mContext; this.cs = cs; this.type = type; } @NonNull @Override public GraffitiViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) { // 獲取 item 佈局 View view = LayoutInflater.from(mContext).inflate(R.layout.item_recycler_graffiti,parent,false); return new GraffitiViewHolder(view); } @Override public void onBindViewHolder(@NonNull GraffitiViewHolder holder, int position) { if(type == 1){// 顏色 holder.view.setBackgroundResource(cs[position]); holder.click.setOnClickListener(v -> { // 設定畫筆顏色 mGraffitiView.setPaintColor(cs[position]); mRecyclerView.setVisibility(GONE); }); }else if(type == 2){// size ViewGroup.LayoutParams lp = holder.view.getLayoutParams(); lp.height = sizes[position]*2; holder.view.setLayoutParams(lp); holder.view.setBackgroundResource(R.color.black); holder.click.setOnClickListener(v -> { // 設定畫筆size mGraffitiView.setPaintSize(sizes[position]); mRecyclerView.setVisibility(GONE); }); } } @Override public int getItemCount() { return cs.length; } } static class GraffitiViewHolder extends RecyclerView.ViewHolder{ View view; LinearLayout click; public GraffitiViewHolder(@NonNull View itemView) { super(itemView); view = itemView.findViewById(R.id.item_view); click = itemView.findViewById(R.id.click_view); } } }
item_recycler_graffiti.xml 佈局檔案
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_marginTop="10dp" android:layout_height="50dp" android:gravity="center"> <LinearLayout android:id="@+id/click_view" android:gravity="center" android:layout_width="match_parent" android:layout_height="match_parent" tools:ignore="UselessParent"> <View android:id="@+id/item_view" android:layout_width="match_parent" android:layout_height="40dp"/> </LinearLayout> </LinearLayout>
自定義塗鴉View:
public class GraffitiView extends View { private final Context mContext; private Canvas mCanvas;// private Bitmap mBitmap;// 用於儲存繪製過的路徑的 bitmap private Paint mPaint;// 畫筆 private Path mPath;// 觸控時的路徑 private int width,height; public GraffitiView(Context context) { this(context,null); } public GraffitiView(Context context, @Nullable AttributeSet attrs) { super(context, attrs); mContext = context; init(); } private void init() { // 初始化 畫筆 mPaint = new Paint(); mPaint.setColor(mContext.getColor(R.color.green));//畫筆顏色 mPaint.setAntiAlias(true);// 抗鋸齒 mPaint.setDither(true);// 抖動處理 mPaint.setStrokeJoin(Paint.Join.ROUND);//畫筆連線處 圓弧 mPaint.setStrokeCap(Paint.Cap.ROUND);//畫筆拐彎處風格 圓弧 mPaint.setStyle(Paint.Style.STROKE);//畫筆格式 mPaint.setStrokeWidth(10f);//畫筆寬度 mPath = new Path(); } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { super.onMeasure(widthMeasureSpec, heightMeasureSpec); width = getMeasuredWidth(); height = getMeasuredHeight(); if(mBitmap == null){ // 初始化 bitmap mBitmap = Bitmap.createBitmap(width,height, Bitmap.Config.ARGB_4444); } if(mCanvas == null){ mCanvas = new Canvas(mBitmap); } } @Override protected void onDraw(Canvas canvas) { super.onDraw(canvas); // 繪製路徑 // 因為每次觸控都會生成一條新的路徑,直接繪製會使原路徑消失,因此 mCanvas.drawPath(mPath,mPaint);// 先將路徑繪製到 bitmap 上,再繪製到當前畫布中 canvas.drawBitmap(mBitmap, 0,0,mPaint);// 將bitmap繪製到當前畫布中 } /** * 清除之前所有路徑 */ public void clearAllPath(){ mBitmap = Bitmap.createBitmap(width,height, Bitmap.Config.ARGB_4444); mCanvas = new Canvas(mBitmap); mPath.reset(); invalidate(); } /** * 設定畫筆顏色 * @param resource id */ public void setPaintColor(int resource){ mPaint.setColor(mContext.getColor(resource)); } /** * 設定畫筆大小 * @param size size */ public void setPaintSize(int size){ mPaint.setStrokeWidth(size); } @SuppressLint("ClickableViewAccessibility") @Override public boolean onTouchEvent(MotionEvent event) { int action = event.getAction(); float x = event.getX(); float y = event.getY(); switch (action){ case MotionEvent.ACTION_DOWN: mPath = new Path();// 每次觸控 生成一條新的路徑 mPath.moveTo(x,y); break; case MotionEvent.ACTION_MOVE: mPath.lineTo(x,y); invalidate(); break; } return true; } }
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45