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

溫馨提示×

溫馨提示×

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

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

Android如何實現給scrollView截圖超過屏幕大小形成長圖

發布時間:2021-08-11 10:47:04 來源:億速云 閱讀:186 作者:小新 欄目:移動開發

這篇文章給大家分享的是有關Android如何實現給scrollView截圖超過屏幕大小形成長圖的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

很多的時候,我們想要分享一個界面的所有內容,可是內容太多,超過了屏幕的大小,簡單的截屏已經滿足不了我們的需要,這時候我們就可以根據布局里scrollView的高度來截取圖片。

代碼如下:

/** 
   * 截取scrollview的屏幕 
   * @param scrollView 
   * @return 
   */ 
  public static Bitmap getBitmapByView(ScrollView scrollView) { 
    int h = 0; 
    Bitmap bitmap = null; 
    // 獲取scrollview實際高度 
    for (int i = 0; i < scrollView.getChildCount(); i++) { 
      h += scrollView.getChildAt(i).getHeight(); 
      scrollView.getChildAt(i).setBackgroundColor( 
          Color.parseColor("#ffffff")); 
    } 
    // 創建對應大小的bitmap 
    bitmap = Bitmap.createBitmap(scrollView.getWidth(), h, 
        Bitmap.Config.RGB_565); 
    final Canvas canvas = new Canvas(bitmap); 
    scrollView.draw(canvas); 
    return bitmap; 
  } 
 
  /** 
   * 壓縮圖片 
   * @param image 
   * @return 
   */ 
  public static Bitmap compressImage(Bitmap image) { 
    ByteArrayOutputStream baos = new ByteArrayOutputStream(); 
    // 質量壓縮方法,這里100表示不壓縮,把壓縮后的數據存放到baos中 
    image.compress(Bitmap.CompressFormat.JPEG, 100, baos); 
    int options = 100; 
    // 循環判斷如果壓縮后圖片是否大于100kb,大于繼續壓縮 
    while (baos.toByteArray().length / 1024 > 100) { 
      // 重置baos 
      baos.reset(); 
      // 這里壓縮options%,把壓縮后的數據存放到baos中 
      image.compress(Bitmap.CompressFormat.JPEG, options, baos); 
      // 每次都減少10 
      options -= 10; 
    } 
    // 把壓縮后的數據baos存放到ByteArrayInputStream中 
    ByteArrayInputStream isBm = new ByteArrayInputStream(baos.toByteArray()); 
    // 把ByteArrayInputStream數據生成圖片 
    Bitmap bitmap = BitmapFactory.decodeStream(isBm, null, null); 
    return bitmap; 
  } 
 
/** 
   * 保存到sdcard 
   * @param b 
   * @return 
   */ 
  public static String savePic(Bitmap b) { 
    SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd_HH-mm-ss", 
        Locale.US); 
    File outfile = new File("/sdcard/image"); 
    // 如果文件不存在,則創建一個新文件 
    if (!outfile.isDirectory()) { 
      try { 
        outfile.mkdir(); 
      } catch (Exception e) { 
        e.printStackTrace(); 
      } 
    } 
    String fname = outfile + "/" + sdf.format(new Date()) + ".png"; 
    FileOutputStream fos = null; 
    try { 
      fos = new FileOutputStream(fname); 
      if (null != fos) { 
        b.compress(Bitmap.CompressFormat.PNG, 90, fos); 
        fos.flush(); 
        fos.close(); 
      } 
    } catch (FileNotFoundException e) { 
      e.printStackTrace(); 
    } catch (IOException e) { 
      e.printStackTrace(); 
    } 
    return fname; 
  }

在需要用到的地方調用getBitmapByView()方法即可:

String fname = ScreenShot.savePic(ScreenShot.getBitmapByView(scrollView));

但是這樣寫的話有時候會因為截取的圖片太長太大而報outofmemory的錯,所以為了避免內存溢出,程序崩掉,要注意用Config.RGB_565,會比ARGB_8888少占內存。還有就是把圖片壓縮一下,至少我這樣就沒有報oom的錯了,即:

String fname = ScreenShot.savePic(ScreenShot.compressImage(ScreenShot 
            .getBitmapByView(scrollView)));

感謝各位的閱讀!關于“Android如何實現給scrollView截圖超過屏幕大小形成長圖”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

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

AI

司法| 临猗县| 桓台县| 仪陇县| 汶上县| 扎鲁特旗| 手游| 浙江省| 康平县| 称多县| 德州市| 司法| 金乡县| 太仆寺旗| 金华市| 泸水县| 金坛市| 吉水县| 仁布县| 泽普县| 吉木乃县| 竹山县| 安吉县| 明溪县| 恩平市| 平塘县| 德江县| 禄丰县| 金湖县| 沙坪坝区| 临潭县| 大宁县| 若羌县| 蒲江县| 岳西县| 固安县| 礼泉县| 珲春市| 锡林郭勒盟| 钦州市| 临城县|