Using ImageView to display Image : ImageView « UI « Android






Using ImageView to display Image

  
package com.eoemobile.book.ex_widgetdemo;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.EditText;
import android.widget.TextView;

public class Test extends Activity {
  CheckBox plain_cb;
  CheckBox serif_cb;
  CheckBox italic_cb;
  CheckBox bold_cb;

  /** Called when the activity is first created. */
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setTitle("ImageViewActivity");
    setContentView(R.layout.main);
  }

 

 
}

//main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical" android:layout_width="fill_parent"
  android:layout_height="wrap_content">

<TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Image Display" />       

<ImageView 
  android:id="@+id/imagebutton"
  android:src="@drawable/icon"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"/>
 
</LinearLayout>

   
    
  








Related examples in the same category

1.Set ImageView width, height
2.extends ImageView
3.Load image with ImageView
4.Using ImageView within ListActivity
5.Using ImageView to display image and reference Image resource in layout xml file
6.ImageView background
7.Set Layout Parameters, Scale Type, background for ImageView
8.ImageView click listener
9.Set Image resource for ImageView
10.Set Image Bitmap for ImageView
11.Set image Uri for ImageView
12.Adding Touch Listener to ImageView
13.Demonstrates setting size constraints on android.widget.ImageView
14.Create ImageView
15.Create an image view, given a drawable. you can set the max size of this imageview as well.
16.download images from the Internet and binds those with the provided ImageView.
17.Choose a Picture