Questions tagged [android-gallery]

Questions regarding using Android gallery application. Gallery application is the official media app installed on all Android mobile devices. The app allows browsing, organizing, sharing and editing of media (photos and videos).

Gallery application is the official media app installed on all Android mobile devices. The app allows browsing, organizing, sharing and editing of media (photos and videos).

Reference: Android Developers Gallery class overview

1181 questions
0
votes
0 answers

Saving drawable into Gallery with textView

I have a drawable called tmp1 which is set on imageView. final ImageView blankcard= (ImageView) findViewById(R.id.blankcard); blankcard.setBackgroundResource(R.drawable.tmp1); I set some text taken from editText into tmp1 through…
Umit Kaya
  • 5,771
  • 3
  • 38
  • 52
0
votes
0 answers

Opening an image from drawable in gallery viewer?

I found some solutions for this, but none of them seemed to work for me. I want to open an image I have from the drawable folder in the android gallery, without copying it to the SD card. I don't know much about the URI either, is it just the…
Mat Whiteside
  • 551
  • 1
  • 5
  • 17
0
votes
1 answer

Fancy Coverflow showing 2 bitmap instead of 1

In Fancy davidschreiber / FancyCoverFlow with ImageLoader, My Coverflow showing 2 image instead of 1 image. My ImageLoader Class is: public class ImageLoader { MemoryCache memoryCache = new MemoryCache(); FileCache fileCache; private…
Macrosoft-Dev
  • 2,195
  • 1
  • 12
  • 15
0
votes
1 answer

Selecting image does not return to my app

I'm accessing the gallery and camera via a seperate intent using the following code: final Intent galleryIntent = new Intent(Intent.ACTION_GET_CONTENT); galleryIntent.setType("*/*"); startActivityForResult(galleryIntent, 0); Intent intent = new…
Luke Villanueva
  • 2,030
  • 8
  • 44
  • 94
0
votes
3 answers

Android RelativeLayout Background Picture from Gallery

I have a problem to set background image for RelativeLayout. details problem : - I have RelativeLayout and Button in my UI. when button clicked then showing Gallery's intent. choose 1 picture from that gallery and i want to set that picture as…
aris embek
  • 13
  • 3
0
votes
1 answer

Multiple images in edit text Android

I am trying to replicate the text message application of Android Application, where the requirement is to send multiple images in one message. I am able to put one image in edit text field. However, I am not sure how we can put multiple images in…
Pritish Shah
  • 611
  • 3
  • 11
  • 25
0
votes
1 answer

Android Image Selection to Activity

I am looking for a light easy way, to pick an image from a gallery, and pass to another intent/activity the image selected. This is what I have but I know it is wrong, I was just looking for some quick insight. I know this opens up an image to be…
thekevshow
  • 774
  • 14
  • 36
0
votes
1 answer

(AndroidTouchGallery) How to start with 2,3,4.. image. How to set position

I`m trying to implement ImageGallery on Android. I use AndroidTouchGallery library. In MainActyvity I have list of images and by clicking on them open AndroidTouchGallery. Everything work, but when open the image gallery starts with the first…
Volodymyr
  • 198
  • 1
  • 2
  • 12
0
votes
3 answers

running of out of memory android?

I made custom gallery app with gallery view and image view.its working nice in 4.2 devices,but its getting force closes in 2.3.3 myHorizontalListView.setOnItemClickListener(new OnItemClickListener() { @Override public void…
Asthme
  • 5,163
  • 6
  • 47
  • 65
0
votes
2 answers

How to add picture to my own gallery

I want to take a photo from my App and save this in my own gallery. After this I need the full name of the photo. With private void dispatchTakePictureIntent(int actionCode) { Intent takePictureIntent = new…
mburm
  • 1,417
  • 2
  • 17
  • 37
0
votes
0 answers

Android display multiple images from Gallery

I am trying to display multiple images from Gallery. For that I am using MultipleImagePick library to select multiple images from Gallery. My problem is, when displaying the selected images in image view, am getting java.lang.OutOfMemoryError Here…
0
votes
1 answer

Android gallery child fill width

I want to make a listview that items can be swipeable, I already tried swipelistview but that's not very fluid for me, so I thought about using the gallery, the actual problem here is that the children of this gallery are not filling the whole…
TootsieRockNRoll
  • 3,218
  • 2
  • 25
  • 50
0
votes
2 answers

Images deleted from Gallery exists in my Application folder Android

I creating chatting application like WhatsApp. I'm storing my media files to folder created on sdcard XYXImages. when I got to Gallery App and trying to delete these images, get deleted from gallery but exists on actual location i.e. in XYZImages/ .…
MobileEvangelist
  • 2,583
  • 1
  • 25
  • 36
0
votes
2 answers

Gridview smooth scroll and image population from the system gallery

I have created a gallery. I am populating a gridview from a simple cursor adapter (custom implementation). First issue is that gridview stucks in the middle while scrolling. I think its because images are binded to a view continuously on user…
0
votes
1 answer

How to load images in ImageView with delay?

I am trying to make gallery and display gridview of ImageViews, but with delay in loadtime of each thumbnail.
Karan Nagpal
  • 521
  • 1
  • 8
  • 19