Android如何實(shí)現(xiàn)自定義view圓并隨手指移動(dòng)

這篇文章主要介紹了Android如何實(shí)現(xiàn)自定義view圓并隨手指移動(dòng),具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)!專注于網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、小程序設(shè)計(jì)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了豐縣免費(fèi)建站歡迎大家使用!

具體內(nèi)容如下

main代碼

public class MainActivity extends AppCompatActivity {
 private int screenW; //屏幕寬度
 private int screenH; //屏幕高度
 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 Display dis = this.getWindowManager().getDefaultDisplay();
 // 設(shè)置全屏
 requestWindowFeature(Window.FEATURE_NO_TITLE);
 this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
  WindowManager.LayoutParams.FLAG_FULLSCREEN);
 // 獲取屏幕寬度
 screenW = dis.getWidth();
 // 獲取屏幕高度
 screenH = dis.getHeight();
 setContentView(new MyView(this));
 }
 //自定義繪圖類
 class MyView extends View {
 private Paint paint; //定義畫筆
 private float cx = 50; //圓點(diǎn)默認(rèn)X坐標(biāo)
 private float cy = 50; //圓點(diǎn)默認(rèn)Y坐標(biāo)
 private int radius = 20;
 //定義顏色數(shù)組
 private int colorArray[] = {Color.BLACK,Color.BLACK,Color.GREEN,Color.YELLOW, Color.RED};
 private int paintColor = colorArray[0]; //定義畫筆默認(rèn)顏色

 public MyView(Context context) {
  super(context);
  //初始化畫筆
  initPaint();
 }
 private void initPaint(){
  paint = new Paint();
  //設(shè)置消除鋸齒
  paint.setAntiAlias(true);
  //設(shè)置畫筆顏色
  paint.setColor(paintColor);
 }

 //重寫onDraw方法實(shí)現(xiàn)繪圖操作
 @Override
 protected void onDraw(Canvas canvas) {
  super.onDraw(canvas);
  //將屏幕設(shè)置為白色
  canvas.drawColor(Color.WHITE);
  //修正圓點(diǎn)坐標(biāo)
  revise();
  //隨機(jī)設(shè)置畫筆顏色
  setPaintRandomColor();
  //繪制小圓作為小球
  canvas.drawCircle(cx, cy, radius, paint);
 }

 //為畫筆設(shè)置隨機(jī)顏色
 private void setPaintRandomColor(){
  Random rand = new Random();
  int randomIndex = rand.nextInt(colorArray.length);
  paint.setColor(colorArray[randomIndex]);
 }

 //修正圓點(diǎn)坐標(biāo)
 private void revise(){
  if(cx <= radius){
  cx = radius;
  }else if(cx >= (screenW-radius)){
  cx = screenW-radius;
  }
  if(cy <= radius){
  cy = radius;
  }else if(cy >= (screenH-radius)){
  cy = screenH-radius;
  }
 }

 @Override
 public boolean onTouchEvent(MotionEvent event) {
  switch (event.getAction()) {
  case MotionEvent.ACTION_DOWN:
   // 按下
   cx = (int) event.getX();
   cy = (int) event.getY();
   // 通知重繪
   postInvalidate(); //該方法會(huì)調(diào)用onDraw方法,重新繪圖
   break;
  case MotionEvent.ACTION_MOVE:
   // 移動(dòng)
   cx = (int) event.getX();
   cy = (int) event.getY();
   // 通知重繪
   postInvalidate();
   break;
  case MotionEvent.ACTION_UP:
   // 抬起
   cx = (int) event.getX();
   cy = (int) event.getY();
   // 通知重繪
   postInvalidate();
   break;
  }

  /*
  * 備注1:此處一定要將return super.onTouchEvent(event)修改為return true,原因是:
  * 1)父類的onTouchEvent(event)方法可能沒有做任何處理,但是返回了false。
  * 2)一旦返回false,在該方法中再也不會(huì)收到MotionEvent.ACTION_MOVE及MotionEvent.ACTION_UP事件。
  */
  //return super.onTouchEvent(event);
  return true;
 } }


}

布局

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools" android:id="@+id/activity_main"
 android:layout_width="match_parent" android:layout_height="match_parent"
 tools:context="com.example.sn.MainActivity">
 <com.example.sn.MainActivity.MyView
 android:id="@+id/myview"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:layout_centerInParent="true"
 />
</RelativeLayout>

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“Android如何實(shí)現(xiàn)自定義view圓并隨手指移動(dòng)”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來學(xué)習(xí)!

當(dāng)前文章:Android如何實(shí)現(xiàn)自定義view圓并隨手指移動(dòng)
本文鏈接:http://muchs.cn/article26/gjssjg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供靜態(tài)網(wǎng)站、網(wǎng)站制作、響應(yīng)式網(wǎng)站、虛擬主機(jī)、營(yíng)銷型網(wǎng)站建設(shè)網(wǎng)站排名

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設(shè)