Set ImageView width, height : ImageView « UI « Android






Set ImageView width, height

  

package app.Test;

import android.app.Activity;
import android.os.Bundle;

public class appTest extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }
}
//main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    
   <SlidingDrawer
     android:id="@+id/drawer"
     android:layout_width="320dip"
     android:layout_height="440dip"
     android:orientation="vertical"
     android:handle="@+id/handle"
     android:content="@+id/content">
     
      <ImageView
         android:id="@+id/handle"
         android:layout_width="48dip"
         android:layout_height="48dip"
     android:src="@drawable/icon"  />
     
    <AnalogClock android:id="@+id/content"
         android:background="#D0A0A0"
         android:layout_width="fill_parent"
         android:layout_height="fill_parent" />
         
   </SlidingDrawer>
   
</RelativeLayout>

   
    
  








Related examples in the same category

1.extends ImageView
2.Load image with ImageView
3.Using ImageView within ListActivity
4.Using ImageView to display image and reference Image resource in layout xml file
5.ImageView background
6.Set Layout Parameters, Scale Type, background for ImageView
7.Using ImageView to display Image
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