Android item中点击小图变大图

或许大家都做过在一个或者是详情列表中有张小图片,需要点击放大,就像微信那样的效果,接下来展示的就是怎么做成这种效果。



首先在Adapter中,适配器,找到你要点击图片的地方,设置点击事件:
@Override
public View getView( int arg0, View convertView, ViewGroup arg2) {
if(convertView == null){
convertView = View.inflate(context,R.layout.workguideiamgeitem, null);
}
image = (ImageView)convertView.findViewById(R.id.image);
//点击小图变大图
final String imagePath= GlobalFactory.image+"/sys/file!download.action?fileId=" + list.get(arg0);
image.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(context,ShowImageActivity.class);
intent.putExtra("imagePath",imagePath);
context.startActivity(intent);
}
});
ImageLoader.getInstance().displayImage(imagePath, image);
return convertView;
}

}
获取到图片的路径之后,需要用Sring类型传到Activity中(就是那张大图片,是以Activity方式显示的),下面是Activity中的代码:
public class ShowImageActivity extends Activity {
private ImageView image;
protected void onCreate(Bundle arg0) {
super.onCreate(arg0);
setContentView(R.layout.showimage);
image = (ImageView)findViewById(R.id.image);
Intent intent=getIntent();
String imagePath=intent.getStringExtra("imagePath");
// Util.t(imagePath);
// System.out.println(imagePath);
ImageLoader.getInstance().displayImage(imagePath, image);
}
}

showimage.xml中的代码:
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#000"
    android:gravity="center" >
   
        android:id="@+id/image"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        />


这样就完成了,最后注意要在Androidmainfest.xml中注册变成大图的Activity。

你可能感兴趣的:(Android开发,ListView,微信,imageview)