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

溫馨提示×

溫馨提示×

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

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

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

洛阳市| 永寿县| 凤阳县| 平南县| 临夏市| 茂名市| 项城市| 车险| 启东市| 临猗县| 平安县| 金湖县| 吴忠市| 金乡县| 尚义县| 连江县| 上蔡县| 襄城县| 西华县| 泗水县| 太湖县| 九台市| 泰顺县| 辽中县| 鄂尔多斯市| 吴旗县| 永平县| 罗江县| 万年县| 沽源县| 大姚县| 十堰市| 循化| 商水县| 宽城| 卢氏县| 金川县| 大庆市| 乐至县| 鹿泉市| 灌南县|