Android :: Error Showing Image After Switching Activity
Nov 17, 2010
i'm having the above problem when switching my activity. In the first activity i have a GalleryView showing all my images and an ImageView show the selected image from the gallery. Now i want to switch to the next activity and keep the same image from the ImageView on screen in the second activity. Here is how i show my images:Is there like an id or something saying what's on screen at the moment of the switch? How can i accomplish this?
View 2 Replies
Nov 18, 2010
I'm trying to show all images from a selected category on screen. Which is the best way to accomplish this? because the drawable folder won't allow me to create subfolders i will be using a database but i don't want to save the whole image in it, can this be done?
View 1 Replies
View Related
Aug 30, 2010
Button showmapButton = (Button)findViewById(R.id.showmap);showmapButton.setOnClickListener(new View. OnClick Listener() {public void onClick(View v) {Intent intent = new Intent(HomePage.this, ShowMap.class); intent. putExtra("username", value);startActivity(intent);In my main menu i have a button 'ShowMap' Everytime i click on showmap my map will hit a null pointer exception causing the program to crash. ShowMap' works fine if i launch straight to that page without having a need to click button to call that activity.I tried changing all my files to "extends MapActivity" instead of regular activitiy but the program will still crash whenever i click on show map
View 2 Replies
View Related
Nov 6, 2010
I have an application that works fine with smaller images (say 1024x768 or so) but when you rotate the phone into a different orientation (say landscape to portrait) mode with a larger image on the screen, and then call ImageView.setImageUri() it goes into the BitmapFactory.class and never returns.So the app eventually times out. Never throws an exception, just never returns. Has anyone else seen this? Sounds like a bug in the Android code more than something I am doing since it works fine for smaller images.
View 3 Replies
View Related
Oct 12, 2010
I am very new to Android (and Java) originally a C# developer.. and am struggling with the concepts and terminology.
I have been through almost all the tutorials and have decided to start on my first test app.The first part of my app is going to involve using the gallery widget (based on the hello gallery tutorial) to display a load of images. (these images will eventually come from the phones camera, but I will cross that bridge later!) My images are currently stored in the drawable folder in my project.As a first step I want to just have the user click on an image and it pops up full screen, just so I know how to get reference to it, but I am struggling. Evetually I want the user to click an image, then a window/activity(?) will open asking them for a bit of text. This will then be store in sqllite against the image. Code...
View 1 Replies
View Related
Jul 30, 2012
I am working on my own app. It appears that when I switch to other tasks after opening and navigating through my app, and switch back to my app later, it crashes. When not task switching, it seems perfectly stable, but task switching tends to make this crash. This does not always happen. If I only quickly switch to email and back, it works perfectly, but if I run several games, and then switch back, the problem occurs. I guess it is something in Android's memory manager that my app doesn't work properly with, but I can't figure out what exactly the problem is.This is my log:
07-29 22:10:22.450: W/dalvikvm(19946): threadid=1: thread exiting with uncaught exception (group=0x40c4d1f8)
07-29 22:10:22.490: E/AndroidRuntime(19946): FATAL EXCEPTION: main
07-29 22:10:22.490: E/AndroidRuntime(19946): java.lang.RuntimeException: Unable to start activity [code].....
View 6 Replies
View Related
Jun 22, 2010
I have created 3 tab in my application and every tab has it's own view. in tab 1 i have a button on top which load another view on same tab but when that view load tab has been hidden this is my problem, i want view switching with in single tab by click on button.
I am not able to change the activity with tab by clicking on button.
View 2 Replies
View Related
Aug 31, 2010
I just started working on android(beginner). I'm stuck in the activity state complexity. I created two activitys(activity1 and activity2). wen i move from the activity1 to 2 and then back to activity1 using a button(back of activity)the values(states) of the views are not restored. here is the code...
View 1 Replies
View Related
Feb 6, 2010
i want to display an image from URL,i found one example from forum .but it doing nothing. i m sending the code plz suggest me what to do package com.example.urlImage;
View 3 Replies
View Related
Dec 8, 2009
Inquiring minds (who returned their Droids for said reason) want to know if you don't mind sharing. Just trying to not let this topic get lost in the shuffle(s).
View 46 Replies
View Related
Dec 22, 2009
I noticed a lot of times when you play a YouTube video,it just doesn't play.Sometimes they do play and I go to switch to HD mode and then a message pops up saying the video can't be played.I thought this was a YouTube issue only,but it also happens with my app Where when I try to watch movie previews and switch to HD.Any suggestions
View 2 Replies
View Related
Nov 7, 2010
I have a main activity, then i call a new activity intent from this. Lets call this SecondActivity. Then from my secont activity i call a browser intent. Then my browser intent call my second activity's onNewIntent method.Evereything work fine, but when i click on "back" button on my phone on my second activity, i will not going to my main activity, but the browsers activity, why?
View 1 Replies
View Related
Nov 19, 2009
when the application is run, the image1 is displayed, expected. but when i press the button image2 is not displayed ! where am I going wrong ?
View 4 Replies
View Related
Aug 10, 2010
I have an Android application that allows the user to select a photo that has already been taken. Once the user selects a photo, I grab the URI information for that photo, use that information to create a bitmap, and then I set the bitmap in an ImageView. This all works perfectly fine.I then give the user the option to select the picture for viewing. When the user chooses to view the picture, I launch an ACTION_VIEW intent, passing the URI data. Intent intent = new Intent(Intent.ACTION_VIEW, pictureUri);startActivity(intent);As you can see, this is very simple code, nothing special going on. The problem is that, when I run this code on my Droid running Android 2.1, about 6 or 7 times out of 10, the application will display the correct picture. But the other 3 or 4 times, I get shown the wrong picture. Also, each time the wrong picture is shown, its always the same incorrect picture being shown. The fact that I see the right picture the majority of the time leads me to believe everything I'm doing in code is fine, so can anyone tell me if you have seen this problem before, and better yet, is there a solution? Here is the exact sequence that I observe on my Droid when I run this (Note: Image URI is already saved before I start the Activity):
- I choose "View Photo" in the Activity
- When things work, I get taken to the gallery and shown image 74
- Each time things do not work, I get shown image 82
Keep in mind that when I start the Activity with the URI already saved (retrieved from database), I set an ImageView based on the URI data in onCreate(), and the Image being shown in the ImageView is ALWAYS the correct image. It's not until I actually decide to view the image using ACTION_VIEW that I see odd behavior. And I know it's not something specific about these 2 photos. I observed this behavior using other photos in the past, and got the same behavior.
View 1 Replies
View Related
Feb 3, 2010
I have to display 10 images(which will be taken form url) and related Text Both imageUrl and text will come from XML parsing.My Question is how we can display image into scrollable format
View 2 Replies
View Related
Jun 4, 2010
I have an app that displays a video using VideoView. The layout consists of a Clock and a VideoView laid out in a simple vertical LinearLayout. Here's my code snippet that I use:
VideoView mVideoView = new VideoView(this);
mVideoView.setVideoPath(myVideoURL);
mVideoView.requestFocus();
mVideoView.start();
Since the buffering of the video takes about 8-10 seconds, the layout comes up with the Clock, but the VideoView stays blank. What I want to achieve is this:
- Display an ImageView for the 10s while the video is buffering
- Detect when the video is ready to be played (onPrepared?)
- Show the Clock and VideoView and start the Video
View 1 Replies
View Related
Mar 30, 2010
My app shows a list of items, where each line is an item title with its image asides, the line reserves 70% of space for text and 30% for image. Imagine what iphone app store looks like. Which view/layout combo is recommended for this purpose? I googled and find this article
View 2 Replies
View Related
Sep 19, 2012
While trying to sbf my Milestone X2 using RSD Lite v5.7 (I used an sbf file named "1FF-daytona-user-2.3.5-45.0.25-111011-release-keys-signed-ntelos-US.sbf") I encountered an error that said: Failed flashing process. phone[0000]: error switching phone to BP Pass through mode (0x70BE)
This Is what my device properties were
IMEI/ESN/MEID: N / A
Technology: N / A
Software Version: N/a
Flex Version: N/a
Bootloader Version: v0x000007
DRM Version: N / A
This is what my file properties were
Filename: 1FF-daytona-user-2.3.5-45.0.25-111011-release-keys-signed-ntelos-US.sbf
Creation Date: 09/18/2012 22:44:49
File size: 861170104
RAM DL Version: N / A
Bootloader Version: N / A
Platform: 4G TEGRA
HAB Type: Signed Production
View 1 Replies
View Related
Oct 29, 2010
I'd like to use a 1x1 size Nine-patch image from Android drawable resources. When I'm trying to display it with <ImageView> in my layout xml file, this one is never showing up on the Android emulator device. Here's the xml code below. Code...
View 1 Replies
View Related
Feb 16, 2010
When i run my program, logcat shows a lot of activity with GC like.
CODE:..................
With diff in obj, bytes and ms values...is it because of some bad practice of coding ?
View 2 Replies
View Related
Sep 24, 2009
I want to display Dialog Box when the application is launched before loading and launching the activity.
or you can say I want to show the dialog on launcher after the launch of my application.
View 5 Replies
View Related
Jul 16, 2009
I know that the following code should show and hide a tiny circular progress bar with the following code in Android:
CODE:.............
The problem is that I am using a TabHost and I need to be able to do this from one of the "child" activities. Is there any way I can go about doing this?
View 2 Replies
View Related
Jun 16, 2010
i developed application with map service and webservices when i run application its became very slow and continuosly it is showing activity not responding force close or wait.
View 1 Replies
View Related
Sep 18, 2009
Can anyone tell me whether it is possible for a Service to show Success/failure Message Notices without interacting with the Activity? Please respond requires this information urgently.
View 2 Replies
View Related
Jan 14, 2013
In all of the screen shots showing off Google Now, there is always an image of a card showing meeting with someone at a particular location, the time it takes to arrive at that location, and a map of the meeting location. I have not been able to figure out how to get Google now to do this.
Presumably, that is a function that arises from a Google Calendar appointment. I've created meeting appointments and used specific addresses for the meeting location, but when Google Now displays that appointment, it displays the name of the meeting and the address only - no travel time and no map. In contrast, for places that I visit regularly, Google Now does display a map and travel time to those locations. But those are not regular appointments.
SCH-I535
View 3 Replies
View Related
Sep 17, 2010
This afternoon I noticed that my facebook app is showing a null error whenever I try and access my news fee Is this a network error otherwise how do I fix it?
View 4 Replies
View Related
Oct 4, 2011
1) I dont want to re-create activity once it is created in order to show. How can I do this ? like showing activity from back stack whenver thers a call for it. (It might appear at any index in back stack.)
View 1 Replies
View Related
Sep 25, 2011
I just have downloaded a copy of SDK from the android site. But when i am going to install it its showing an error
"installer integrity check has failed. common cause include incomplete download and damage media. contact with the installer's author to obtain a new copy."
I have downloaded several times, zip format and exe format. But same message showing.
My PC is win64bit corei3 intel mother board, jdk installed....
View 2 Replies
View Related
Jul 6, 2010
I believe this is pretty trivial but I can't get it to work. I want to display a default image in gallery elements (ImageViews) while their actual image is being fetched from the net. Right now, nothing is shown for an ImageView which its image has yet to arrive. Once it arrives it is immediately shown. What I tried is right after the instantiation of the ImageView to call its setImageResource function like so:
final ImageView i = new ImageView(mContext);
i.setImageResource(R.drawable.loading);
But it doesn't seem to work. Below is the full getView() function.
public View getView(int position, View convertView, ViewGroup parent) {
final ImageView i = new ImageView(mContext);
i.setImageResource(R.drawable.loading);
// if the drawbale is in the buffer - fetch it from there
Drawable bufferedImage = DataManager.getInstance().getImagesBuffer()[position];
if (bufferedImage != null){ i.setImageDrawable(bufferedImage);
BitmapDrawable drawable = (BitmapDrawable) i.getDrawable();
drawable.setAntiAlias(true);
} // if drawable is not in buffer - fetch it from the net via AsyncImageLoader
else { String imageUrl = DataManager.getInstance().getImageBufferInstance().getImageUrl(position);
Drawable downloadedImage = AsyncImageLoader.getInstance().loadDrawable(imageUrl, new ImageCallback() {
public void imageLoaded(Drawable imageDrawable, String imageUrl) {
if (imageDrawable == null) { imageDrawable = getResources().getDrawable(R.drawable.icon);
} i.setImageDrawable(imageDrawable); BitmapDrawable drawable = (BitmapDrawable) i.getDrawable();
drawable.setAntiAlias(true);
} } ); i.setImageDrawable(downloadedImage);
} i.setLayoutParams(new CoverFlow.LayoutParams(Utils.getInstance().getScreenWidth() / 2, Utils.getInstance().getScreenHeight() / 2));
i.setScaleType(ImageView.ScaleType.CENTER_INSIDE); return i;
View 1 Replies
View Related
May 20, 2009
Getting error to load image from website. code...
View 1 Replies
View Related