Skip to main content

Simple Gallery Application In Android

Here is simple gallery application.Copy and download the code and try it out.....
 
public class mygalleryactivity extends Activity {
 
 Integer[] imageIDs = {
   R.drawable.pic1,
   R.drawable.pic2,
   R.drawable.pic3,
   R.drawable.pic4,
   R.drawable.pic5,
   R.drawable.pic6,
   R.drawable.pic7
   };
 Gallery gallery;
   
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        
        gallery=(Gallery) findViewById(R.id.Gallery01);
        gallery.setAdapter(new ImageAdapter(this));
        gallery.setOnItemClickListener(new OnItemClickListener() 
        {

   public void onItemClick(AdapterView parent, View v, int position ,long id) {
    // TODO Auto-generated method stub
    Toast.makeText(getBaseContext(),
      "pic" + (position + 1) + "selected",
      Toast.LENGTH_SHORT).show();
    ImageView imageView =(ImageView) findViewById(R.id.image1);
    imageView.setImageResource(imageIDs[position]);
   }
  });    }
    
    public class ImageAdapter extends BaseAdapter
 {
  Context context;
  int itemBackground;
  
  public ImageAdapter(Context c)
  {
   context = c;
    //---setting the style---
   TypedArray a = obtainStyledAttributes(R.styleable.Gallery1);
   itemBackground = a.getResourceId(R.styleable.Gallery1_android_galleryItemBackground,0);
   a.recycle();
  }
    //---returns the number of images--- 
  public int getCount() 
  {
   System.out.println(imageIDs.length);
     return imageIDs.length;
     
  }
 //---returns the item---
  public Object getItem(int position)
  {
     return position;
  }
 //---returns the ID of an item---
  public long getItemId(int position) 
  {
     return position;
  }
 //---returns an ImageView view---
  
  public View getView(int position, View convertView,ViewGroup parent)
  {
    ImageView imageView;
    if (convertView == null) {
      imageView = new ImageView(context);
      imageView.setImageResource(imageIDs[position]);
      imageView.setScaleType(
      ImageView.ScaleType.FIT_XY);
      imageView.setLayoutParams(
        new Gallery.LayoutParams(150, 120));
    } else {
      imageView = (ImageView) convertView;
    }
    
 imageView.setBackgroundResource(itemBackground);
 return imageView;
  }}}  

            

Comments

Popular posts from this blog

Spannable String in Android - URL Span ,Clickable Span, Rich-Style Formatting of Textview .....

See more Android Tutorials here....... Faster Loading images in GridViews or ListViews Spannable brings lots of possibility to TextView, includes displaying various appearance of a Text and onClick callbak. The SpannableString class allows you to easily format certain pieces which are called spans of a string, by applying CharacterStyle ie,color, font, ormake it a link . Here is an example where, explained how to use spannable string to give font size, color, linking a text via clickable span and through URL Span and to strike through the text. Lets go through the example : import android.os.Bundle; import android.text.SpannableString; import android.text.method.LinkMovementMethod; import android.text.style.ClickableSpan; import android.text.style.ForegroundColorSpan; import android.text.style.RelativeSizeSpan; import android.text.style.StrikethroughSpan; import android.text.style.URLSpan; import android.view.View; import android.widget.TextView; import android.widget.Toast;

Passing Images between Activities in Android

in First Activity: Intent intent=new Intent(FirstClass.this, SecondClass.class); Bundle bundle=new Bundle(); bundle.putInt("image",R.drawable.ic_launcher); intent.putExtras(bundle); startActivity(intent); in Second Acticity: Bundle bundle=this.getIntent().getExtras(); int pic=bundle.getInt("image"); v.setImageResource(pic); another method: in First Activity: Drawable drawable=imgv.getDrawable(); Bitmap bitmap= ((BitmapDrawable)drawable).getBitmap(); ByteArrayOutputStream baos = new ByteArrayOutputStream(); bitmap.compress(Bitmap.CompressFormat.PNG, 100, baos); byte[] b = baos.toByteArray(); Intent intent=new Intent(Passimage.this,myclass.class); intent.putExtra("picture", b); startActivity(intent); in Second Acticity: Bundle extras = getIntent().getExtras(); byte[] b = extras.getByteArray("picture"); Bitmap bmp = BitmapFactory.decodeByteArray(b, 0, b.lengt

Show and Resume Android Soft-Keyboard

Code to show keyboard: InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE); imm.showSoftInput(yourEditText,InputMethodManager.SHOW_IMPLICIT); Code resume keyboard : InputMethodManager imm = (InputMethodManager)gettSystemService(Context.INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow(yourEditText.getWindowToken(), 0);