Back to project page GridImageSearch.
The source code is released under:
Copyright (c) 2014 Keithen Hayenga Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the So...
If you think the Android project GridImageSearch listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.codepath.gridimagesearch; /*from w w w. ja v a 2s . c o m*/ import android.os.Bundle; import android.support.v7.app.ActionBarActivity; import android.view.Menu; import android.view.MenuItem; import com.loopj.android.image.SmartImageView; public class ImageDisplayActivity extends ActionBarActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_image_display); ImageResult result = (ImageResult) getIntent().getSerializableExtra("result"); SmartImageView ivImage = (SmartImageView) findViewById(R.id.ivResult); ivImage.setImageUrl(result.getFullURL()); } }