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

溫馨提示×

溫馨提示×

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

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

Android中怎么實現圖片壓縮并加載顯示

發布時間:2021-06-28 17:16:11 來源:億速云 閱讀:163 作者:Leah 欄目:移動開發

這篇文章將為大家詳細講解有關Android中怎么實現圖片壓縮并加載顯示,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

解析:

圖片壓縮的關鍵就是

options.inSampleSize = scale;

如果scale > 0,表示圖片進行了壓縮

/**
 * 壓縮圖片
 * @author chen.lin
 *
 */
public class LoadImageActivity extends Activity implements OnClickListener {
  private Button mBtnLoad;
  private ImageView mImageView;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_image_load);
    initViews();
  }
  private void initViews() {
    mBtnLoad = (Button) findViewById(R.id.btnLoadImage);
    mImageView = (ImageView) findViewById(R.id.imageView);
    mBtnLoad.setOnClickListener(this);
  }
  @Override
  public void onClick(View v) {
    if (v == mBtnLoad) {
      Options options = new Options();
      BitmapFactory.decodeFile("/sdcard/images/1.jpg", options);
      //不去真的解析圖片,只是獲取圖片的頭部信息,寬高
      options.inJustDecodeBounds = true;
      //得到圖片的真實寬高
      int imageHeight = options.outHeight;
      int imageWidth = options.outWidth;
      //得到屏幕的寬高
      WindowManager wm = (WindowManager) getSystemService(WINDOW_SERVICE);
      int screenHeight = wm.getDefaultDisplay().getHeight();
      int screenWidth = wm.getDefaultDisplay().getWidth();
      //得到縮放比例
      int scale = 1;
      int scaleX = imageWidth / screenWidth;
      int scaleY = imageHeight / screenHeight;
      if (scaleX > scaleY & scaleX >=1) {//表示如果寬的縮放比例大于高的,并且scaleX>=1都為true
        scale = scaleX;
      }
      if (scaleY > scaleX & scaleY >=1) {//表示如果高的縮放比例大于寬的,并且scaleY>=1都為true
        scale = scaleY;
      }
      //解析圖片
      options.inJustDecodeBounds = false;
      //修改圖片的縮放比例,如果scale=4說明圖片縮小4倍,像數=1/16
      options.inSampleSize = scale;
      Bitmap bm = BitmapFactory.decodeFile("/sdcard/images/1.jpg", options);
      mImageView.setImageBitmap(bm);
    }
  }
}

布局文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical" >
  <ImageView
    android:id="@+id/imageView"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="1" />
  <EditText
    android:id="@+id/editText1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:ems="10" >
    <requestFocus />
  </EditText>
  <Button
    android:id="@+id/btnLoadImage"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:onClick="loadImage"
    android:text="加載圖片" />
</LinearLayout>

關于Android中怎么實現圖片壓縮并加載顯示就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

揭阳市| 金昌市| 闸北区| 洱源县| 谢通门县| 东丽区| 佳木斯市| 广宗县| 蒙阴县| 屏边| 正阳县| 鸡泽县| 定陶县| 拜城县| 上思县| 和平区| 柞水县| 贵溪市| 平原县| 南郑县| 勃利县| 宜春市| 上栗县| 龙口市| 开鲁县| 正蓝旗| 酒泉市| 简阳市| 兴宁市| 石城县| 静安区| 清涧县| 宜州市| 阳城县| 陇川县| 宁化县| 静乐县| 育儿| 同仁县| 余庆县| 巍山|