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
1 answer

How to set gallery in Landscape mode

I am new in android.in my application gallery widget are completely run in portrait mode but that is not properly show in landscape mode.in which i am using switch case for portrait and landscape mode in on create method. my code is below. public…
0
votes
2 answers

Create Photo Gallery for online image in Android

I have a set of about 100 urls which are images. Like http://www.site1.com/Image/img1.jpg and http://www.site2.com/Image/phot1.jpg. I want to have a android application to show all the images in full screen and support swipe left and right just like…
Vinod
  • 31,933
  • 35
  • 96
  • 119
0
votes
3 answers

`getExternalStorageDirectory()` issue - Android

I'm writing an android application that takes some pictures and would like to save them all in a unique directory associated to my application. This directory should be accessible from the standard Gallery, in such a way that the user can later…
Matteo
  • 7,924
  • 24
  • 84
  • 129
0
votes
0 answers

How to display a texview while scrolling images in gallery?

Is there a way I could display a textview when each image on a gallery comes to focus? as in when I am scrolling through each and every image to show a a toast or a textview about each image. as I am using each image in the gallery to start an…
Mr.Noob
  • 1,005
  • 3
  • 24
  • 58
0
votes
1 answer

Read all internal memory images in android though mediastore

i am able to read all external images though mediastore in Android, but i want to read all images of internal memory also. Plz Help..!!
user1
  • 11
  • 1
0
votes
1 answer

Custom Gallery Not Scrolling

I am following this question: How to stop scrolling in a Gallery Widget? I tried to implement my custom gallery like so: public class CustomGallery : Gallery { public CustomGallery(Context context, IAttributeSet attrs) : …
0
votes
1 answer

How to load image from gallery to intent

I'm trying to load image (not URL) from either camera or gallery and save it to global class. (At the moment I'm trying to get to the image, no class defined yet). So I think camera returns image correctly, and put it in the bundle, and I like to…
Balkyto
  • 1,460
  • 4
  • 22
  • 47
0
votes
1 answer

Customize Gallery Widget android

I want to create an Gallery-like View which are same as Gallery widget in android! If I try to use default Gallery with Adapter which is list of small Bitmap, It work nicely! However, there's default focus of Gallery (focused Bitmap is default on…
Kingfisher Phuoc
  • 8,052
  • 9
  • 46
  • 86
0
votes
3 answers

android replace drawable image programmatically

I have 10 images in drawable directory in my android project and I'm using those images in a gallery. I want to replace those 10 images programatically upon user request to download new images from the web. Is this possible to replace the images in…
0
votes
1 answer

Share Via crashes when mutly selection

My app can be lounched by Gallery's "sheare via" option. when running on Galaxy S2 4.03 and more then one image being selected the application crashes when trying to get image url - uri = (Uri) bundle.get("android.intent.extra.STREAM"); how it can…
eyal
  • 2,379
  • 7
  • 40
  • 54
0
votes
1 answer

Tap imageview to open image in Gallery on Android

I'm making an app, that is displaying an image in a single activity. Im using an json feed to get the url of the image, an it downloads the image via the lazyloader function, and then displays it in an ImageView What I need to create is that when…
0
votes
1 answer

Using lazy list in gallery

I'm trying to display some pictures by extracting the picture name from a sqlite database and then using that picture name to find that particular picture in the drawable folder and display it in a gallery widget in my app. It works but now the…
maxchia
  • 23
  • 1
  • 6
0
votes
1 answer

How to perform setOnCLickListener of ImageView of Scrollable gallery

I am tring to Implement Gallery which contains TextView on ImageView. When user click any of these I need to call some other Activity. I tried to call setonclickListener on gallery but which always returns result of last item in gallery. If I set…
Neha
  • 414
  • 1
  • 4
  • 14
0
votes
1 answer

setOnClickListener on ImageView of Gallery stops the scrolling of Gallery

I have a gallery which contains one textview and imageview. If i set OnClickListener on Imageview , Gallery stops scrolling. I need a clickable and scrollbale gallery where user can click either on imageview or textview will shows the next activity…
Neha
  • 414
  • 1
  • 4
  • 14
0
votes
1 answer

Is there a native photo viewer?

I am building a camera and gallery app for android ICS. I have a gallery view and camera working but now want to add the ability to click on an image from the gallery and make that photo full screen with standard zoom gestures ect. Not sure if…
erik
  • 4,946
  • 13
  • 70
  • 120