HTC EVO 4G :: Changing Default Image When Calling Without Linked Photo?
Jun 21, 2010
You know when you call someone who doesn't have a photo linked to their contact it displays the green android guy. Well I really like what forum member sprint fun did with his avatar by making it into a OSU buckeye. I would much rather see that image rather then the green default android guy. Sprint fun has already said I could use the image, but I have no idea how or if its possible to set it as the default image for callers with no photo linked to their account.
View 11 Replies
Feb 26, 2010
By default, the Hero displays a green android logo when calling a number (contact or not). Is there a way to change that picture?
View 1 Replies
View Related
May 28, 2010
For some reason when Orange send me texts, a photo of one of my facebook friends is attached to it. I do not have this person's number in my contact list, so I dont know how they have become linked. I clicked on "View Message Details" and the sms is coming from "from_Orange".
Anyone having the same problem or know how to fix this?
View 2 Replies
View Related
Jun 17, 2010
My contact photo's/icon's keep getting overridden by their linked Facebook photo.. i set the particular contact to a photo and in a couple of seconds their facebook photo is back as their icon.. any way to keep this from happening.
View 3 Replies
View Related
Jan 14, 2010
I was writing some reviews for apps in the market and it showed my first name as being the one who wrote it, obviously. I also noticed that other people had unusual names showing up that were obviously not first names. I'm wondering how I would go about changing my display name in the marketplace. I'd prefer to have something like my forum handle show up for my reviews and such.
View 6 Replies
View Related
Aug 12, 2010
I have my Google contacts linked to their applicable Facebook contacts. I don't like that, when the names are different, it defaults to listing the contact under Facebook name. That means that it is no longer possible to search by Google contact name from within the phone application.
Anyone know if there is some way to override this?
View 1 Replies
View Related
Jun 7, 2010
Wasn't sure exactly how to ask this, but here we go So, for example, I installed "Dialer One", a dialer replacement.So whenever I hit the "Phone" button, it asks how I want to complete the action. Using Dialer One, or Phone. And it gives me the option to "Use by default for this action".So, lets say I want to use Dialer One by default, but then I change my mind. How do I set it back to the default Phone.Obviously, this question applies to more than just the phone app. After writing all that I think the simple way to ask my question is- I really just want to know how to undo the 'use by default for this action' choices I may make in the future.
View 2 Replies
View Related
Feb 5, 2010
hi all proud parent of a newborn eris here. was wondering if there is a way to enlarge a contact photo for the screen when that contact is calling you?
View 1 Replies
View Related
Apr 12, 2010
I saw a previous thread (Changing my contact card picture) where a similar question was never quite resolved. I have the same issue except that my contact card has automatically synced to my facebook and I would prefer to change to a different picture that is not my facebook profile picture. There's no option to do so under people->my contact card and if I go to a picture in my albums it only lets me set the photo for a contact that is not me.
View 1 Replies
View Related
Jul 1, 2010
I have an image which is taken from andorid by calling image _capture how do i upload it to a windows server?
View 1 Replies
View Related
May 27, 2010
I accidentally checked ASTRO for the default application to select photos on my wallpaper menu.Is there a way to revert it back to select a non-default application, so if I want to use a photo program, I can use that?
View 2 Replies
View Related
Apr 9, 2010
i am implementing photoimage upload in sdcard in sdcard jpg image getting and in image uri retrieve data in bitmap in bitmap converting byte code this byte code sending to the database how can implemented this problem please some suggestion of implementation some example of source i am new in android t's very urgent , if anybody knows the solution.
View 2 Replies
View Related
Jun 2, 2010
I have a simple task (simple in other platforms, not in Android :-( ): take a photo and return its pathname to the caller. I searched a lot the net and tried many variants to the code. I'm aware of the "thumbnail image" bug and am trying to bypass it. The following code works, but its somewhat dificult to get the photo: the guy has to go to the media picker, click menu button, select "camera capture", take the photo, click back, and finally select the photo from the list. The good thing: the photo returned is BIG.
Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType("image/*");
startActivityForResult(intent, TAKE_PHOTO);
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
switch (requestCode) { case TAKE_PHOTO: if (resultCode == RESULT_OK)
try { Uri uri = data.getData(); java.io.InputStream is = getContentResolver().openInputStream(uri);
java.io.FileOutputStream os = new java.io.FileOutputStream(targetPhotoName);
byte[] buf = new byte[4096]; int r; while ((r = is.read(buf)) > 0) os.write(buf,0,r);
is.close(); os.close(); Launcher4A.pictureTaken(0,null);
} catch (Exception e) { String stack = Log.getStackTraceString(e);
AndroidUtils.debug(stack); } break; }
I also saw a code that (in theory) would do exactly what I need:
sourcePhotoName = Environment.getExternalStorageDirectory() + java.io.File.separator + "tmpPhoto.jpg"; targetPhotoName = s;
Intent i = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
Uri uri = Uri.fromFile(new java.io.File(sourcePhotoName));
i.putExtra(android.provider.MediaStore.EXTRA_OUTPUT, uri);
startActivityForResult(i, TAKE_PHOTO);
protected void onActivityResult(int requestCode, int resultCode, Intent data)
{ switch (requestCode) { case TAKE_PHOTO: if (resultCode == RESULT_OK)
try { java.io.InputStream is = new FileInputStream(sourcePhotoName);
java.io.FileOutputStream os = new java.io.FileOutputStream(targetPhotoName);
byte[] buf = new byte[4096]; int r; while ((r = is.read(buf)) > 0) os.write(buf,0,r);
is.close(); os.close(); } catch (Exception e) {
String stack = Log.getStackTraceString(e); AndroidUtils.debug(stack);
} break; } }
It works (almost) as expected: the camera application is shown, and after the photo is taken, the photo is returned to the application. However, it has two problems:
1. If I pass a folder inside my application's directory, when I press "done" button, the camera application does not return; it stays in the same screen until I press cancel. Seems that the camera application does not have permissions to write to my folder.
2. The image returned from this code is the Small Image (Thumbnail).
So, I now have a code that works and return a big image, but is somewhat burocratic to the guy to use (and also can lead to errors, if he selects the wrong picture), and a code that does what i want but returns a small picture. I'm using a HTC G2 with Android 1.6, and I have to use it because 1.6 is the requirement for my system. Ok, now the question: is there something I can do in code #2 to make it return the big picture?
View 4 Replies
View Related
Nov 6, 2009
When i used the face book app to take a photo and post it to my wall, the quality was the worst i have seen an image in in a long time. Is there a way to change the default quality of photo upload with that "take a picture" feature?
View 11 Replies
View Related
Nov 21, 2009
Is there anyway to add photo's to the default Wallpaper Gallery? I've tried to create a new folder labeled Wallpapers, but that didn't do it.
View 1 Replies
View Related
May 8, 2010
I've come over from a Window's based phone and love the Incredible, but am having a problem with pictures that I can't find an answer to in the manual.
I simply want to save all the pictures I take with the phone to the SD card so I can transfer the entire file later to dedicated photography software to be cataloged and tweaked.
I can't find how to set up the system so that every photo goes directly to the SD card by default.
View 6 Replies
View Related
Feb 22, 2010
I'm not rooted with anything, however I am running Open Home. I also installed the Windows7 Icon Pack for use. However, I wish to change some of the icons it defaults to when I load them up (particularly the Market icon, which defaults to the Recycle Bin).Is there a way to do this manually? or do I need to download another software from the market? I see some people mentioned "Better Cut" but I'm unsure if that does what I am asking, or if it is just a replacement for Open Home.I'm not too savvy poking around the Android OS at the root.
View 1 Replies
View Related
Mar 22, 2010
I've been trying the Opera Mini 5 beta, and I'm loving it so far. Particularly the fact that it's so much faster than the standard browser.So, my question is... Is it possible to change the "default" browser?That is, in some apps I have the option of "viewing in browser", but these always take me to a page using the default browser. One such example is "NewsRob" with its "Browser" menu option when viewing an article.
View 1 Replies
View Related
Dec 31, 2009
Does anyone know how to reset / change the default action/program i.e. that begins when clicking a file in astro manager.Originally I had the choice within Astro manager when choosing a jpeg to view the jpeg with astro image viewer or the default android/htc image viewer.I ticked the little box that said always use this program, but now I would like the choice of programs again.
View 4 Replies
View Related
Oct 24, 2010
I keep having to change my default ringtone to my choice, for some unknown reason, it keeps getting changed back to default. I have rings extended and have changed most of my contacts ringtones and they have stayed, but whenever I go to settings and change it and then either shut my phone off, plug it in, whatever, it causes it to go back to default. I have tried ringdroid and that seems to only work as a ringtone maker, it will not show up in the menu to change tones like Rings Extended does. I also moved my ringtones to an appropriate folder for access. I also have adw launcher now (previously Launcherpro plus-which made no difference)
View 5 Replies
View Related
Sep 2, 2010
I hate that the incredible default gallery shows videos and photos together in the same app. Is there any app out there that just shows your photos or is there a way to hide videos in the default gallery so I can see my videos with another app?
View 3 Replies
View Related
Feb 28, 2010
Does anyone know if there is a way to change the default storage locations for video or photos taken with the Moto Droid?
View 2 Replies
View Related
Mar 14, 2012
In my xml layout I have a button and an image inside the button to the right.I used:
Code:
android:drawableRight="@drawable/checkmark
Let's say I want to change the image to an X and my button in my java code is named button1.How whould I change the image?I know how to change the background using:
Code:
button1.setBackgroundResource(R.drawable.X)
But I can't find out how to change the image to the right.
View 3 Replies
View Related
Aug 2, 2010
I am taking a lot of pictures on my Desire, but having them names IGM1 IMG 2 etc isn't very helpful. Is there any way of changing some settings so the phone automatically names the pictures with the date instead?
View 1 Replies
View Related
Apr 28, 2010
I need to push an intent to default camera application to make it take a photo, save it and return an URI. Is there any way to do this?
View 2 Replies
View Related
Aug 18, 2010
Is there any way to change the default location of R.java file which is getting created in "gen" folder? By default R.Java will get created in gen folder under the package (of the application) directory. I have a common code (with UI) which has to go with different applications with different package names/branding. When ever I change the package name in manifest file, R.java will created inside that package so I have to change the import statement in all the files with the new location of R. How I can avoid it? Also is there is any provision to have two or more R files in one application?
View 7 Replies
View Related
May 29, 2010
I recently downloaded Panda Home and the iPad theme.I am happy with the design! Part of why I wanted to change the default was to have more Home screens so I could scroll horizontally to view my apps (like the iPhone; I am not trying to be like the iPhone.I just do appreciate certain design factors!).Is there a way to change the default location of the apps to the various Home pages? Or do I have to manually shift each one? For some reason, I find the vertical tray not as helpful or easy to access, although now that I can jump to apps by letter, that does make it better.
View 1 Replies
View Related
Aug 10, 2010
I am trying to make it so that when I push the camera (red) button on my phone, it launches Vignette rather than the stock camera. Does anyone know how to do this. I tried going to the "manage applications" and clear defaults on the camera, but the camera is not an application that shows up. I even reinstalled Vignette, hoping that it would prompt me to pick the default app, but no joy.Anyone know how to change the default camera, or else remap the camera button?
View 2 Replies
View Related
Jul 15, 2010
O.K. I've seen in different themes or roms that the backgrounds are different than stock. Evil eris the robot on the dialer screen was blue. I've seen em pink. Seen em with checkerboard pattern across his midsection. Never seen a completely custom without the robot tho. My question is how do you change that screen and is the robot not removable? Can I just put some random picture that I think is cool at the time? Oh and how do I change the color of the call button and battery icon, if theres a way without installing other apps to do it?
View 2 Replies
View Related
Aug 8, 2010
i bought two samsung galaxy s and both have their own individual issues mine has the issue of turning off by itself which i found previous post about but the other one which im posting about consistently changes the background back to the default bubble blue live wallpaper, would anyone know if this is a app issue or a hardware issue with the phone becuase i wanna make sure i go back and exchange it, if thats the issue, if its something that can be fixed then please give me the solution because i really dont wanna exchange it and setup the phone all over again for my girlfriend.
View 3 Replies
View Related