亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

Android中復制圖片的實例代碼

發布時間:2020-09-06 21:22:04 來源:腳本之家 閱讀:184 作者:su708877595 欄目:移動開發

activity_main.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_height="match_parent"
  android:paddingBottom="@dimen/activity_vertical_margin"
  android:paddingLeft="@dimen/activity_horizontal_margin"
  android:paddingRight="@dimen/activity_horizontal_margin"
  android:paddingTop="@dimen/activity_vertical_margin"
  android:orientation="vertical"
  tools:context=".MainActivity" >
 <ImageView
   android:id="@+id/iv_one"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"/>
 <ImageView
   android:id="@+id/iv_two"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"/>
</LinearLayout>

MainActivity中代碼:

public class MainActivity extends Activity {
  private ImageView ivOne;
  private ImageView ivTwo;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    //1.獲取圖片控件
    ivOne = (ImageView) findViewById(R.id.iv_one);
    ivTwo = (ImageView) findViewById(R.id.iv_two);
    //2.把tomcat.png 轉換成bitmap 然后顯示到iv_src 
    Bitmap srcBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.tomcat);
    //3.將原圖放置在第一個控件中
    ivOne.setImageBitmap(srcBitmap);
    //4.創建原圖模板
    Bitmap copybitmap = Bitmap.createBitmap(srcBitmap.getWidth(), srcBitmap.getHeight(), srcBitmap.getConfig());
    //5.想作畫 需要一個畫布  以copybitmap為模板 
    Canvas canvas = new Canvas(copybitmap);
    //6.創建一個畫筆 
    Paint paint = new Paint();
    //7.開始作畫  srcBitmap參考原圖去畫
    canvas.drawBitmap(srcBitmap, new Matrix(), paint);
    for (int i = 0; i < 10; i++) {
      //[一次修改多個像素]
      copybitmap.setPixel(20+i,30, Color.RED);
    }
    //8.把copybitmap顯示到ivTwo上
    ivTwo.setImageBitmap(copybitmap);    
  }
}

總結

以上所述是小編給大家介紹的Android中復制圖片的實例代碼,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!

向AI問一下細節

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

AI

静宁县| 延庆县| 曲沃县| 游戏| 长垣县| 汕头市| 雷州市| 永福县| 临泉县| 集安市| 南和县| 呼图壁县| 綦江县| 鄂伦春自治旗| 偏关县| 澎湖县| 饶平县| 杂多县| 黄山市| 德保县| 平果县| 布拖县| 姚安县| 阿拉尔市| 霍山县| 姜堰市| 株洲县| 图木舒克市| 盘山县| 时尚| 汽车| 岳池县| 通许县| 淳安县| 昭苏县| 红河县| 横峰县| 镇宁| 无为县| 出国| 广德县|