android 版的 assets 图集资源,Android中使用assets下的资源——图片资源

在Android

应用中使用assets目录下存放的资源文件,assets目录下存放的资源代表应用无法直接访问的原生资源,应用程序通过AssetManager以二进制流的形式来读取资源。此应用是查看/assets/目录下的图片查看器(图片格式为:.png),在assets目录下放几张PNG格式的图片

该程序的界面十分简单,只包含一个ImageView和一个按钮

代码如下:

布局文件如下:bitmaptest.xml

xmlns:android="http://schemas.android.com/apk/res/android"

android:orientation="vertical"

android:gravity="center_vertical"

android:layout_width="wrap_content"

android:layout_height="wrap_content">

android:id="@+id/btnBitmap"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="TestBitmap"

/>

android:id="@+id/imageBitmap"

android:layout_width="wrap_content"

android:layout_height="wrap_content" />

package com.infy.configuration;

import java.io.IOException;

import java.io.InputStream;

import android.app.Activity;

import android.content.res.AssetManager;

import android.graphics.BitmapFactory;

import android.graphics.drawable.BitmapDrawable;

import android.os.Bundle;

import android.view.View;

import android.view.View.OnClickListener;

import android.widget.Button;

import android.widget.ImageView;

public class BitmapTest extends Activity{

String[] images = null;

AssetManager assets = null;

int currentImge = 0;

ImageView image;

@Override

protected void onCreate(Bundle

savedInstanceState) {

// TODO Auto-generated method

stub

super.onCreate(savedInstanceState);

setContentView(R.layout.bitmaptest);

image = (ImageView)findViewById(R.id.imageBitmap);

try{

assets = getAssets();

//获取/assests/目录下的所有的文件

images = assets.list("");

}catch(IOException e){

e.printStackTrace();

}

final Button next = (Button)findViewById(R.id.btnBitmap);

next.setOnClickListener(new OnClickListener() {

@Override

public void

onClick(View v) {

//

TODO Auto-generated method stub

if(currentImge

>= images.length){

currentImge

= 0;

}

//找到下一个图片文件

while(!images[currentImge].endsWith(".png")){

currentImge++;

//如果发生数组越界

if(currentImge

>= images.length){

currentImge

= 0;

}

}

InputStream

assetFile = null;

try{

//打开指定资源对应的输入流

assetFile

= assets.open(images[currentImge++]);

}catch(IOException

e){

e.printStackTrace();

}

BitmapDrawable

bitmapDrawable = (BitmapDrawable)image.getDrawable();

//如果图片还未回收,先强制回收该图片

if(bitmapDrawable

!=null && !bitmapDrawable.getBitmap().isRecycled()){

bitmapDrawable.getBitmap().recycle();

}

//该变现实的图片

image.setImageBitmap(BitmapFactory.decodeStream(assetFile));

}

});

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值