91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android如何制作畫畫板

發布時間:2021-06-22 11:24:26 來源:億速云 閱讀:144 作者:小新 欄目:移動開發

這篇文章主要為大家展示了“Android如何制作畫畫板”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“Android如何制作畫畫板”這篇文章吧。

本文實例為大家分享了Android畫畫板展示的具體代碼,供大家參考,具體內容如下

main.xml布局

<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.demo.MainActivity">

  <ImageView
    android:id="@+id/iv"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/bg"
    />

  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:layout_alignParentBottom="true"
    >
    <Button
      android:id="@+id/red"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="紅色"
      android:onClick="onplay"
      />
    <Button
      android:id="@+id/green"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="綠色"
      android:onClick="onplay"
      />
    <Button
      android:id="@+id/root"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="刷子"
      android:onClick="onplay"
      />
    <Button
      android:id="@+id/save"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="保存"
      android:onClick="onplay"
      />
    <Button
      android:id="@+id/finish"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="涂漆"
      android:onClick="onplay"
      />
  </LinearLayout>

</RelativeLayout>

main布局

/*
畫板canvas  畫板paint 手勢識別器
整體思路:因為我是圖片是作畫,實際是對圖片進行修改,起到畫圖的效果
1.原圖,白紙,畫筆,畫板
2.根據手勢識別進行作畫

 */
public class MainActivity extends AppCompatActivity {
private Bitmap bitmap;
  private Canvas canvas;
private ImageView iv;
  private int startx;
  private int starty;
  private Paint paint;
  private Bitmap bmSrc;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    //加載原圖
    bmSrc = BitmapFactory.decodeResource(getResources(), R.drawable.bg);
    //創建白紙,寬,高,圖片的參數
     bitmap = Bitmap.createBitmap(bmSrc.getWidth(), bmSrc.getHeight(), bmSrc.getConfig());
    //創建畫板,參數是白紙對象
    canvas = new Canvas(bitmap);
    //創建畫筆
    paint = new Paint();
    //在紙上作畫
    iv=(ImageView)findViewById(R.id.iv);
    canvas.drawBitmap(bmSrc,new Matrix(), paint);
    //-----------------手勢識別器和畫筆結合的知識-------------------
  //給控件設置手勢適配器,可以得到用戶在這個控件上所做的手勢
    iv.setOnTouchListener(new View.OnTouchListener() {


      //當用戶手在這個控件時,指的就是用戶的手對控件滑動,按下,松開的三種場景,自動回調
      @Override
      public boolean onTouch(View view, MotionEvent motionEvent) {
        switch (motionEvent.getAction()){
          case MotionEvent.ACTION_DOWN://按下時回調一次
            //獲取用戶手指按下時的坐標
            startx = (int) motionEvent.getX();
            starty = (int) motionEvent.getY();
            break;
          case MotionEvent.ACTION_MOVE://手指滑動時,不停地調用
            int newx = (int) motionEvent.getX();
            int newy = (int) motionEvent.getY();
            //在背景圖畫線
            canvas.drawLine(startx,starty,newx,newy, paint);
            startx=newx;
            starty=newy;
            iv.setImageBitmap(bitmap);
            break;
          case MotionEvent.ACTION_UP://松開時回調一次

            break;
        }
        //事情分發機制
        //true:iv處理該觸摸事件
        //false:iv不處理該觸摸事件,事件傳遞給上一級
        return true;
      }
    });
  }
  public void onplay(View view){
   switch (view.getId()){
     case R.id.red:
       paint.setColor(Color.RED);
       break;
     case R.id.green:
       paint.setColor(Color.GREEN);
       break;
     case R.id.root:
       paint.setStrokeWidth(5);
       break;
     case R.id.save:
       if(SaveViewUtil.saveScreen(iv)){
         Toast.makeText(this, "截圖成功", Toast.LENGTH_SHORT).show();
       }else{
         Toast.makeText(this, "截圖失敗,請檢查sdcard是否可用", Toast.LENGTH_SHORT).show();
       }
       break;
     //涂漆
     case R.id.finish:
       canvas.drawRect(new Rect(0,0,width,height), paint);
       break;
     }

   }
  }

這是一個把畫的圖存儲SD卡的工具類

public class SaveViewUtil {
  
  private static final File rootDir = new File(Environment.getExternalStorageDirectory()+File.separator);

  /**保存截圖的方法*/
  public static boolean saveScreen(View view){
   //判斷sdcard是否可用
   if(!Environment.MEDIA_MOUNTED.equals(Environment.getExternalStorageState())){
     return false;
   }
   if(!rootDir.exists()){
     rootDir.mkdir();
   }
   view.setDrawingCacheEnabled(true);
   view.buildDrawingCache();
   Bitmap bitmap = view.getDrawingCache();
   try {
     bitmap.compress(CompressFormat.JPEG, 100, new FileOutputStream(new File(rootDir,System.currentTimeMillis()+".jpg")));
     return true;
   } catch (FileNotFoundException e) {
     e.printStackTrace();
     return false;
   }finally{
     view.setDrawingCacheEnabled(false);
     bitmap = null;
   }
  }
}
<!-- 往SDCard寫入數據權限 -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

以上是“Android如何制作畫畫板”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

巫山县| 绥江县| 永城市| 错那县| 乌苏市| 大渡口区| 进贤县| 荆门市| 辽中县| 冀州市| 年辖:市辖区| 东乌| 长宁区| 攀枝花市| 永嘉县| 冕宁县| 磐石市| 武功县| 昌图县| 红河县| 调兵山市| 五河县| 桐梓县| 抚宁县| 庆安县| 固始县| 日照市| 吴江市| 苏尼特左旗| 兴和县| 鹿泉市| 玛沁县| 鄯善县| 博白县| 丽水市| 苏州市| 同心县| 灵璧县| 噶尔县| 兖州市| 读书|