Back to project page AndroidGridImageSearch.
The source code is released under:
MIT License
If you think the Android project AndroidGridImageSearch 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 net.julienlecomte.gridimagesearch; // w w w . j av a 2s . c o m import com.loopj.android.image.SmartImageView; import android.app.Activity; import android.os.Bundle; public class ImageDisplayActivity extends Activity { SmartImageView sivImage; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_image_display); sivImage = (SmartImageView) findViewById(R.id.sivResult); ImageResult imageResult = (ImageResult) getIntent().getSerializableExtra("image"); String url = imageResult.getFullUrl(); sivImage.setImageUrl(url); } }