您好,登錄后才能下訂單哦!
本篇文章為大家展示了Android應(yīng)用中怎么對(duì)超大的圖片進(jìn)行加載,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。
1.Bitmap的使用
- 2.Android手機(jī)中加載圖片的原理
有的時(shí)候,我們加載一張不足1M的圖片,盡管手機(jī)的堆內(nèi)存有16M,仍然會(huì)導(dǎo)致內(nèi)存溢出,why?
這就更計(jì)算機(jī)加載圖片的原理有關(guān)了:
1).手機(jī)會(huì)解析圖片的所有像素信息,把每個(gè)像素信息都存入到內(nèi)存中
2).Android中保存圖片是用ARGB保存的,A表示阿爾法透明度,所以一個(gè)像素點(diǎn)占用了4個(gè)字節(jié)
例如:一張1080*720像素的24位位圖圖片,可能實(shí)際上經(jīng)過(guò)壓縮后大小只有幾十K,而在android手機(jī)加載這張圖片所需要的內(nèi)存大小為:
1080*720*(3+1)=3110400 byte = 3037 KB = 2.9MB
實(shí)際上,圖片中還包含一點(diǎn)其他的信息,例如圖片保存的格式,使用的相機(jī)名稱,以及拍攝時(shí)間等,所以總體來(lái)說(shuō)要比3110400字節(jié)大一旦,大概多上幾十個(gè)字節(jié)
步驟:
1.創(chuàng)建一個(gè)Android項(xiàng)目,編寫布局文件:
<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:orientation="vertical" tools:context="hhh.exercise.smultimedia_a_image.MainActivity" > <EditText android:id="@+id/ed" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" android:text="a.jpg" android:textColor="#00ff00" android:textSize="30sp" /> <requestFocus /> <Button android:onClick="see" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="點(diǎn)擊看片" android:textColor="#00ffff" android:textSize="30sp" /> <ImageView android:id="@+id/iv" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_gravity="center" android:src="@drawable/ic_launcher" /> </LinearLayout>
界面如下所示:
2.在MainActivity中編寫代碼:
public class MainActivity extends Activity { private EditText ed; private ImageView iv; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); ed = (EditText) findViewById(R.id.ed); iv = (ImageView) findViewById(R.id.iv); } public void see(View view) { // 確定要加載的圖片(這里為了調(diào)試方面,把所有的圖片都放在SD卡中,然后在界面上輸入圖片的名字,根據(jù)給名字拼接字符串) String fileName = ed.getText().toString(); String path = Environment.getExternalStorageDirectory().getPath()+ "/" + fileName; // 該類為位圖工廠(BitmapFactory)的內(nèi)部類,用來(lái)封裝參數(shù)對(duì)象 Options opts = new Options(); // 不為像素申請(qǐng)內(nèi)存,只獲取圖片的寬、高信息 // inJustDecodeBound該字段設(shè)置為true,那么位圖工廠構(gòu)建BitMap對(duì)象時(shí)返回的是空值,但是會(huì)把圖片的一些信息返回在Options對(duì)象中(如圖片的寬、高等) opts.inJustDecodeBounds = true; // 第二個(gè)參數(shù)是解析圖片時(shí)傳入的參數(shù),由于可能傳入的參數(shù)過(guò)多,所以直接把所有參數(shù)封裝成一個(gè)對(duì)象 BitmapFactory.decodeFile(path, opts); // 獲取圖片的額寬高 int imgWidth = opts.outWidth; int imgHeight = opts.outHeight; // 獲取當(dāng)前手機(jī)屏幕的寬高 Display dp = getWindowManager().getDefaultDisplay(); int screenWidth = dp.getWidth(); int screenHeight = dp.getHeight(); // 設(shè)置默認(rèn)縮放比為1 int scale = 1; // 計(jì)算圖片寬高與屏幕寬高比例,即計(jì)算寬縮放比,高縮放比 int scaleWidth = imgWidth / screenWidth; int scaleHeight = imgHeight / screenHeight; // 選擇縮放比例,如果圖片比屏幕小,就不進(jìn)行縮放.如果圖片比屏幕大,但是寬高縮放比例不同,選擇縮放比大 if (scaleWidth >= scaleHeight && scaleWidth > 1) { scale = scaleWidth; } else if (scaleWidth < scaleHeight && scaleHeight > 1) { scale = scaleHeight; } // 在Options的對(duì)象中設(shè)置縮放比例 opts.inSampleSize = scale; // 一定要把inJustDecodeBound該字段設(shè)置為false,實(shí)際上默認(rèn)值是false, // 但是在前面的代碼中已經(jīng)改為了true,所以要更改過(guò)來(lái)。當(dāng)然,也可以重新new 一個(gè)Option是對(duì)象 opts.inJustDecodeBounds = false; Bitmap bm = BitmapFactory.decodeFile(path, opts); iv.setImageBitmap(bm); } }
上述內(nèi)容就是Android應(yīng)用中怎么對(duì)超大的圖片進(jìn)行加載,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。