I have three buttons Image , Videos , Audios. I want to change the views in gallery with the audios , videos , images resources when corresponding button clicked so that only related image of the buttons appear in gallery.

My code is here:

XML layout:

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <Button
            android:id="@+id/button1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Audios" >
        </Button>

        <Button
            android:id="@+id/button2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Videos" >
        </Button>

        <Button
            android:id="@+id/button3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Images" >
        </Button>
    </LinearLayout>

    <Gallery
        android:id="@+id/Gallery01"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" >
    </Gallery>
</LinearLayout>

<ImageView
    android:id="@+id/ImageView01"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >
</ImageView>

Java file:

public class GalleryView extends Activity {
Integer[] pics = {
        R.drawable.cloudy,
        R.drawable.hazy,
        R.drawable.mostlycloudyday,
        R.drawable.partlycloud,
        R.drawable.sunny,
        R.drawable.sunrain,
        R.drawable.thunderstorm,
        R.drawable.weathercloudy,
    };
ImageView imageView;
Button mAudio;
Button mVideo;
Button mImages;
/** Called when the activity is first created. */
@Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    mAudio=(Button) findViewById(R.id.button1);
    Gallery ga = (Gallery)findViewById(R.id.Gallery01);
    ga.setAdapter(new ImageAdapter(this));

    imageView = (ImageView)findViewById(R.id.ImageView01);
    ga.setOnItemClickListener(new OnItemClickListener() {

        @Override
        public void onItemClick(AdapterView<?> arg0, View arg1, int pos,
                long arg3) {
            Toast.makeText(getBaseContext(), 
                    "You have selected picture " + (pos+1) +  "of Gallery", 
                    Toast.LENGTH_SHORT).show();
            imageView.setImageResource(pics[pos]);

        }

    });

}


public class ImageAdapter extends BaseAdapter {

    private Context ctx;
    int imageBackground;

    public ImageAdapter(Context c) {
        ctx = c;
        TypedArray ta = obtainStyledAttributes(R.styleable.Gallery1);
        imageBackground =  ta.getResourceId(R.styleable.Gallery1_android_galleryItemBackground, 1);
        ta.recycle();
    }

    @Override
    public int getCount() {

        return pics.length;
    }

    @Override
    public Object getItem(int arg0) {

        return arg0;
    }

    @Override
    public long getItemId(int arg0) {

        return arg0;
    }

    @Override
    public View getView(int arg0, View arg1, ViewGroup arg2) {
        ImageView iv = new ImageView(ctx);
        iv.setImageResource(pics[arg0]);
        iv.setScaleType(ImageView.ScaleType.FIT_XY);
        iv.setLayoutParams(new Gallery.LayoutParams(150,120));
        iv.setBackgroundResource(imageBackground);
        return iv;
    }

 }
}

Anybody please help me with this,

Thanks.

link|improve this question

79% accept rate
Please be clear , Do you want to show the next image in gallery? Or want to change whole images in gallery? – Arslan Nov 10 '11 at 6:44
Thanks for ur comment Arslan,I want the entire gallery to be changed on click of the buttons. – Vivek Kalkur Nov 10 '11 at 6:49
Please check my answer. Thanks – Arslan Nov 10 '11 at 7:10
Thanks Arslan.I will accept your answer but in the function OnItemClick() I want to set the background for each image clicked,how will I do that according to your code? – Vivek Kalkur Nov 10 '11 at 9:32
feedback

3 Answers

up vote 1 down vote accepted

For the changing the image in gallery, you must change the Resources image id in array. e.g change image for videos in int[] video_pics and so on.

import android.app.Activity;
import android.content.Context;
import android.content.res.TypedArray;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.BaseAdapter;
import android.widget.Button;
import android.widget.Gallery;
import android.widget.ImageView;
import android.widget.Toast;

public class GalleryView extends Activity implements OnClickListener {
    int[] image_pics = { R.drawable.cloudy, R.drawable.hazy, R.drawable.mostlycloudyday, R.drawable.partlycloud,
            R.drawable.sunny, R.drawable.sunrain, R.drawable.thunderstorm, R.drawable.weathercloudy, };

    int[] video_pics = { R.drawable.cloudy, R.drawable.hazy, R.drawable.mostlycloudyday, R.drawable.partlycloud,
            R.drawable.sunny, R.drawable.sunrain, R.drawable.thunderstorm, R.drawable.weathercloudy, };

    int[] audio_pics = { R.drawable.cloudy, R.drawable.hazy, R.drawable.mostlycloudyday, R.drawable.partlycloud,
            R.drawable.sunny, R.drawable.sunrain, R.drawable.thunderstorm, R.drawable.weathercloudy, };

    ImageView imageView;

    Button mAudio;
    Button mVideo;
    Button mImages;

    ImageAdapter galleryAdapter;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        mAudio = (Button) findViewById(R.id.button1);
        mVideo = (Button) findViewById(R.id.button2);
        mImages = (Button) findViewById(R.id.button3);

        mAudio.setOnClickListener(this);
        mVideo.setOnClickListener(this);
        mImages.setOnClickListener(this);

        Gallery ga = (Gallery) findViewById(R.id.Gallery01);
        galleryAdapter = new ImageAdapter(this); 
        galleryAdapter.setResourseArray(image_pics);
        ga.setAdapter(galleryAdapter);

        imageView = (ImageView) findViewById(R.id.ImageView01);
        ga.setOnItemClickListener(new OnItemClickListener() {

            @Override
            public void onItemClick(AdapterView<?> arg0, View arg1, int pos, long arg3) {
                Toast.makeText(getBaseContext(), "You have selected picture " + (pos + 1) + "of Gallery", Toast.LENGTH_SHORT)
                        .show();
                imageView.setImageResource(pics[pos]);

            }

        });
    }

    @Override
    public void onClick(View view) {
        if (view == mAudio) {
            if (galleryAdapter != null) {
                galleryAdapter.setResourseArray(audio_pics);
                galleryAdapter.notifyDataSetChanged();
            }
        } else if (view == mVideo) {
            if (galleryAdapter != null) {
                galleryAdapter.setResourseArray(video_pics);
                galleryAdapter.notifyDataSetChanged();
            }
        } else if (view == mImages) {
            if (galleryAdapter != null) {
                galleryAdapter.setResourseArray(image_pics);
                galleryAdapter.notifyDataSetChanged();
            }
        }
        }

    public class ImageAdapter extends BaseAdapter {

        private Context ctx;
        int imageBackground;
        private int[] resourseArray = null;

        public ImageAdapter(Context c) {
            ctx = c;
            TypedArray ta = obtainStyledAttributes(R.styleable.Gallery1);
            imageBackground = ta.getResourceId(R.styleable.Gallery1_android_galleryItemBackground, 1);
            ta.recycle();
        }

        @Override
        public int getCount() {
            return resourseArray.length;
        }

        public int[] getResourseArray() {
            return resourseArray;
        }

        public void setResourseArray(int[] resourseArray) {
            this.resourseArray = resourseArray;
        }

        @Override
        public Object getItem(int arg0) {

            return arg0;
        }

        @Override
        public long getItemId(int arg0) {

            return arg0;
        }

        @Override
        public View getView(int position, View arg1, ViewGroup arg2) {
            ImageView iv = new ImageView(ctx);
            iv.setImageResource(resourseArray[position]);
            iv.setScaleType(ImageView.ScaleType.FIT_XY);
            iv.setLayoutParams(new Gallery.LayoutParams(150, 120));
            iv.setBackgroundResource(imageBackground);
            return iv;
        }

    }
}
link|improve this answer
Thanks Arslan.I will accept your answer but in the function OnItemClick() I want to set the background for each image clicked,how will I do that according to your code? – Vivek Kalkur Nov 10 '11 at 9:28
Please explain more , do you want to make the clicked image as b background of Gallery? – Arslan Nov 10 '11 at 10:34
feedback

Button.onClickEvent -> ga.setSelection(int postion);

link|improve this answer
Mr.Smile,I want to change the entire gallery view.Ur code helps me to change the position of the images if I am not wrong. – Vivek Kalkur Nov 10 '11 at 6:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.