Android :: Inconsistent Ringtone Behavior

Mar 16, 2009

I am trying to add ringtones to the media/ringtones folder from my application. If the phone is connected via USB to a computer or mounted on my Mac, the ringtones do not show up in the SD Card, nor in the Ringtone settings.

But if I run the application with the USB unplugged, the ringtones appear ok. This is not a problem with Ringdroid which does the same thing.

Android :: inconsistent ringtone behavior


Android :: Inconsistent Handler Behavior

Sep 30, 2010

I am using a handler inside my service to display notifications at a certain time using the Handler.postDelayed method. My application runs fine on the emulator just as expected satisfying all cases. But when I installed the same on my HTC Wildfire, it simply doesn't happen as anticipated. Notifications are displayed at a random manner after the scheduled time and some notifications even fail. I'm monitoring my service from the Applications > Running Services and still my service is active.

View 1 Replies View Related

Android :: Inconsistent Premultiply Behavior In Bitmap

Sep 28, 2010

I have noticed that loading an image into a GLTexture using

CODE:........

Will create a texture with premultiplied alpha. Not a problem, as long as I use glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA) to blend instead of glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA) which will cause dark borders.

However, I've found that if I render text onto the Bitmap and convert to glTexture using:

CODE:........

The resultant texture is NOT premultiplied, and using glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA) will cause ugly over- saturated edges when blended into the 3D world. Blending using glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA) makes it look right again.

To confirm this, I saved the bitmap into a PNG file and load it as a resource into a texture, and the resultant texture is premultiplied and renders correctly using glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA)

Is there a way to force the text rendering onto the bitmap to be pre- multiplied?

View 2 Replies View Related

Android :: IME Options Behavior Is Inconsistent Across Different Devices

Jun 4, 2009

I noticed that the imeOptions attribute on TextViews behaves inconsistently across different devices. For instance, setting imeOptions to "normal" has the following effects:

1) On the emulator and G1s running 1.5: The OSK will have a "Done" key and clicking it will simply close the OSK with no further action taken (this is exactly what I need)

2) On my HTC Magic (G2), also running 1.5 (of course): The OSK will have an enter key (showing the enter symbol instead of "Done") and when clicking it, the OSK will close and bring up the context menu of the text view... I mean, seriously. That is the last thing any user or developer would expect it to do.

There seems to be no way to simply close the OSK after entering some text on the G2, *except* when specifying flagNoEnterAction in imeOptions, which on the G2 does what "normal" does on the G1, but on the G1, this will lead to the OSK to not respond at all to the enter key (user has to hit "back" to close the OSK).

This is a complete mess, is there any way to have the OSK behave in a sane manner without resorting to hacks (like checking for device models and setting imeOptions programmatically)? Didn't Google say they cared about backwards compatibility before releasing Cupcake? I have nothing but trouble getting my app to look and behave identical on different Android models.

View 4 Replies View Related

Samsung Captivate :: Inconsistent USB Behavior

Aug 10, 2010

Sometimes when I plug into my USB car charger, it seems to detect it as a computer, and asks what USB mode I want to use. I can only choose "mass storage", because anything else causes the phone to go into MTP mode & won't go away until I unplug the USB cable. Other times, it just starts charging & doesn't ask for a USB mode. The big issue is that when it does ask for a USB mode, and I set it to Mass Storage, apps like Listen suddenly can't "see" or use the internal SD card & bitches, "No SD card" and stops playing. Can't listen to podcasts in my car? Deal breaker! Why is this so random?

View 6 Replies View Related

Android :: Why Docs Are Inconsistent

May 27, 2009

I have looking for something and found these inconsistencies in the online documentation

Now when I try to find the 'notifyWithText' api, I could not find it.

Another example is IntentReciever. I just want to know is this class exists? As I found code in this forum itself using IntentReciever, but I cant find this class in the doc.

And why standard intents like action android:name="android.provider.Telephony.SMS_RECEIVED are not documented?

View 11 Replies View Related

Android :: Inconsistent Naming For SDK 2.1

Apr 6, 2010

I find that the name of google maps api directory in 2.1 platform is wrong google_apis-3-r03 while all others google_apis-4_r02 i.e - prefixed instead of _ used for release.

View 2 Replies View Related

Android :: SetChoiceMode - GetSelectedItemPosition & Inconsistent Behaviour

Feb 18, 2009

Got an activity that extends ListActivity. The list is backed up by a custom adapter that extends BaseAdapter. -- getListView().setFocusable(true); getListView().setChoiceMode(ListView.CHOICE_MODE_SINGLE); -- I do a simple (getSelectedItemPosition() == == ListView.INVALID_POSITION) check in onPrepareOptionsMenu() to disable the items that require an item to be selected.

Now, what I do after launching the activity (the action takes place under emulator, ver.1.1) an what it looks like: 1) Hit menu - the menu items are disabled - OK 2) Select an item with mouse wheel and hit menu - the items get enabled - OK 3) Click anywhere outside the list, repeat 2). The items don't get enabled - WTF? 4) Start from scratch, select an item hitting Del and moving mouse. The result is the same as for 3).

Why do these (3, 4) things keep happening to me?

View 3 Replies View Related

Android :: Setting A New Default Ringtone Without Ringtone Picker

Mar 28, 2010

I'd like to set a new default ringtone without using the ringtone picker. In other words, there is a certain ringtone that is already installed on my system, and I want to programmatically set it to be my default ringtone without any human interaction. The reason I want this is because every time I reboot my N-1, my previous default ringtone setting gets forgotten, and I am given another ringtone that I don't like. I want to set up an app that I can run manually (or better yet, to cause to automatically run upon startup) which will reset my default ringtone to the one that I like without my having to manually do this via the Settings.
The only examples I have found so far for doing this involve using the ringtone picker, but as far as I can tell, this requires human interaction, which I want to avoid.

View 5 Replies View Related

Android :: Same Code & Phone Models - Inconsistent Results

Dec 14, 2009

I recently added a feature to my app that allows the user to send a report via a message chooser (all have chosen gmail) that helps mitigate the fact that I don't have all the physical phones to test on. Execution worked as expected on my G1 and the emulator, however, to my horror as users began sending them in most of them were incomplete! Pseudo-code of what I am doing is as follows: On my phone and the emulator, all of the packages are inserted into the email. However, most of the emails I get, even from the same exact phone model/carrier/OS version, only contain "Text1". Users that have automatic signature insertions even have that at the bottom, so it's not that the email is being cut off somehow, it's that size is apparently 0. That is the only thing I can think of. Every once and a while I will get a full email though. This frightens me because what other APIs run fine in my testing but not user phones? What's going on here?

View 2 Replies View Related

Android :: G1 System UIDs Inconsistent - None Of The Apps Work

Jul 2, 2009

About two days ago my phone started receiving and making all calls as 'unknown'. I decided to wait to go straight to a T-mobile retail store. But today July 2 at 10 am. none of the apps where working, the browser, text messages, none. the phone became crazy I started to receive error messages on the screen. Finally decided to restart the phone, when it turned on again i received the message" g1 system UIDs inconsistent, you need to wipe your data partition or you device will be unstable." it had the I'm feeling lucky button, when pressed, the phone reset itself, most of my apps where gone, but it did not help or fixed anything. Im desperate I love my G1 phone i bought it the next day of the release, it worked great, got my 1.5 update worked fine, 'till now. the problem is where to go for help. If it is an OS problem is it google's fault or T-mobile? I have a flex pay account when i bought the phone. I bought it full price almost $ 500 so to get a new G1 since i am a student i cant afford it. I feel very sad not being able to use it or fix the problem now all my data is gone all my apps, :( i cant even go on the market app to donwload them because i receive the error message of force close.

View 2 Replies View Related

Android :: Inconsistent Results From Date Additions Loop

Dec 6, 2009

I am running code to return date-based calculations. The method is designed to calculate the number of work days given a beginning and ending date and I pass in the elements of the dates, create two calendar objects from the two dates and compare them.

Tell me if there is a bug causing inconsistent results from

c2.add(Calendar.DATE, 1);

or possibly the Calendar.after method ...?

c2.set(ccyy, mm, dd); c4.set(ccyyNew,mmNew, ddNew);

c4.after(c2)

View 6 Replies View Related

Android :: Layout Weight Is Inconsistent For Horizontal And Vertical Orientation

Apr 8, 2009

I have played around a bit with the xml files for creating layouts and can't explain the behaviour of layout_weight when using it in a LinearLayout that has orientation="vertical"

When creating a layout that is horizontal everything follows the documentation, that a child would get more space if it's has the highest value.

But the following code for vertical orientation, give more space to the item with lowest weight.

CODE:..........

And the question is: Is this a bug or just a feature that maybe need more documentation?

View 2 Replies View Related

HTC Legend :: Inconsistent Wifi

May 10, 2010

I recently bought a HTC Legend off ebay since it's not available in Australia but I'm having trouble with the wifi on my home network. It works on occasion but fails most of the time. Sometimes it won't connect at all and just says "unsuccessful" whereas other times it might tell me it's trying to obtain an ip address and then not work.

I've got two computers connected to my wifi as well so it's not my actual connection. Is there such thing as devices competing for wifi? because the few times it's worked was when I was changing my computer's wifi but it sometimes doesn't work even with my computer off!

View 3 Replies View Related

KitKat 4.4 :: Why Microphone Icon So Inconsistent

Oct 25, 2013

Take a look at the microphone icon on a stock 4.3 Jelly Bean home screen. Open up Google now and the same icon is there. Now take a look at the Play Store. In Play Magazines as well you the mic icon from Ice Cream Sandwich. The Play Store has (somewhat) recently undergone a significant upgrade when Jelly Bean was at a mature age of version 4.2. It will updated again in time for 4.4 KitKat, evolving into line with current Android design guidelines featuring the sliding navigation drawer. Will Google then update the mic icon or will they revert it back to the ICS style in the future?

View 2 Replies View Related

General :: Push Notifications Inconsistent?

Dec 13, 2012

any Android device I had had never really has had good push notifications. Basically, it is hit or miss, mostly a miss. Various apps I never seem to get notifications, such as the eBay app. Notifications are enabled and it seems like they only work if I am actually in the app, but if it is not open, no notifications. Or same with Words with Friends, it pretty much never sends me a notification and when it does, it could take 30 minutes for it to show up while my iPhone would show up immediately. Even when using the Lumia 920 for a few weeks, the notifications came through with out delay.

View 2 Replies View Related

Samsung Moment :: Ringtone Have Created Don't Show Up In All Ringtone Areas Of Phone

Dec 10, 2009

I purchased my moment about 2 weeks ago and have been having fun figuring it out however there are some areas where I am having problems.

1. When you want to attach a document it selects the picture folder/area, how do you browse instead of being forced into that area.

2. I downloaded ringtone app and have found the app quite useful, the problem I am having is, the ringtones I have created don't show up in all the ringtone areas of my phone, what needs to be done to correct this.

3. The basic user guide that comes with the phone says there is an app I can download called samsung new pc studio. When I call sprint or samsung they say this app is not available or can't be used by a casd(the u.s. standard, I think casd is right), they say this software is only for the other standard, I did find this app on the web. Is what sprint and samsung saying true if not can I use the ones I found on the web.

4. If you could choose only ten apps to have(free)which ones would you choose?

View 3 Replies View Related

HTC Incredible :: Ringtone Trimmer Unable To Delete Custome Ringtone?

May 17, 2010

I used the htc ringtone trimmed for one of the song in my music library on my phone and I'm sorry if there is already a thread for this but how are you able to delete these ringtones when you no longer want them? The program its self works fine for making ringtones but I cannot find anyway to delete them. I even looked in Astro. If someone doesnt mind could they please lend some advice on this. I've searched in the forums and I havnt found a solution to it.

View 4 Replies View Related

Motorola Droid X :: Downloaded A New Ringtone And Setting It Up As A Default Ringtone

Sep 13, 2010

Trying to help a friend with his Droid. He downloaded a ringtone from the Verizon site and he is trying to set it up as his "RINGTONE". Can someone please walk me through this.

View 5 Replies View Related

Motorola Droid 2 :: Set A Ringtone For Voicemail - Change The Name Of A Ringtone File

Aug 18, 2010

My fiance upgraded from LG Voyager to Droid 2. She wanted her old ringtones from the Verizon Media store so she downloaded them. When she stored them they were given default names. I was able to make the appropriate ringtone associations, except for voicemail. I have 2 questions:

1. How do you set a ringtone for voicemail? When I run the standard voicemail app (Verizon) I cannot being up a menu.

2. How do I change the name of a ringtone file?

View 4 Replies View Related

Motorola Droid :: Inconsistent Sd Card Mounting Via Usb

Jun 9, 2010

I have the latest Motorola drivers on two different laptops, but sometimes my SD fails to mount on the PC when I plug it into the USB. I am able to mount most of the time and do normal file operations, no problem. But sometimes I go into failure mode where no matter what I try the SD won't mount. I try rebooting the phone and laptop, trying my other laptop, uninstalling an app I suspect is causing a problem, but probably isn't, etc. Then, sometime later, for no apparent reason, I'll plug the phone into the laptop and suddenly it's working again. I see threads about SD mounting difficulties, but none that address an intermittent problem like I'm having. Any ideas about diagnostics, fixes, or preventive measures?

When it fails to mount, the symptom is that with many attempts, the phone will make the mounting sound repeatedly, but never mounts. Other times, it makes the sound once, as if it succeeded, but it doesn't mount. I've checked the log with aLogcat, but I see nothing that I can tell might be informative, but then I'm not an expert with that stuff.

I must say, the error is really vexing. Mounting works well enough to use the SD card for transferring files, but then just when you need it (to transfer something back) it fails.

View 7 Replies View Related

HTC Desire :: Inconsistent Data Access On Unrooted?

Jun 17, 2010

Having really inconsistent data access on my unrooted HTC Desire/Orange.

Normally either 4 things happen:

1. The phone constantly flicks between 3G and H.
2. The phone will just hang in 3G/H
3. The phone says there is no data connection.
4. Reluctant to use G when 3G appears to be unavailable.

At first I thought it was my phone but really it only happens in certain places which indicates a signal issue. This is North London though, not countryside.

However sometimes rebooting the phone or reconnecting the data works, which indicates a phone problem. However reconnecting the mobile can take a very long time which indicates a signal problem.

Then the other day I was playing with other SIMs when mine just would not connect. My friend's Virgin Mobile worked fine. Then I tried a spare Orange SIM card and it went straight into G and stayed there. I think it could be a 2G SIM card. The SIM card appeared to get a higher signal strength as well. Could my SIM really cause a difference?

It might be an app, but if is it will be hard to track down.

Changing my phone will be a hassle i'm sure so only want to do this in the last resort. I can't seem to nail the problem down. Does anyone else have data problems with their Desire on Orange? Especially in London?

View 49 Replies View Related

HTC Incredible :: Difference Between Phone Ringtone And Contact Ringtone?

Jul 19, 2010

Trying to set a mp3, what's the difference?

View 2 Replies View Related

Samsung I7500 :: Custom Ringtone / Notification Ringtone

Jan 28, 2010

Hey all, so I just got a Samsung Galaxy finally in the mail. It took long enough to figure out how to put music on it, then use my music for ringtones. But when I am in Settings for Notification Ringtones, I do not see the mp3 I added but only in Calling Ringtones. Why is this? I want to use the same ringtone for notifications too!.

View 1 Replies View Related

Motorola Droid :: How To Set A Stock Ringtone As A Notification Ringtone?

Aug 11, 2010

I want to use the ringtone that comes stock on the phone called "New Player" as a notification tone for text messages. Any way that I can do so?

View 1 Replies View Related

Samsung Epic 4G :: Battery Meters - All So Inconsistent Or Buggy

Sep 3, 2010

I've had my phone unplugged since 11AM this morning. It's now 8PM. My battery meter shows 1h 30m since unplugged (I think this is the built-in status from the OS). Additionally my battery widget shows 26% but the blue batter in the top corner shows 1/2 full. Are there any good battery meters out there that I can trust? Is anyone else noticing wild inconsistencies in time's and battery meters?

View 15 Replies View Related

HTC Incredible :: Inconsistent Delivery Of Texting/sharing Photos

May 22, 2010

I am having inconsistent delivery of photos via text/mms.

I am using Handcent.

After the picture resizes and I click send I initially get a message in the notification bar telling me that it was Unable to Deliver - Retrying.

This happens EVERY time, however, in some cases the picture/mms seems to go through while other times it doesn't. I check the delivery reports and there is no confirmation that these mms messages either get delivered or not.

Has anyone experienced this and is there a solution? Using the settings, I've decreased the default picture size and I increased the allowable size of the file able to be delivered. This hasn't made a difference.

View 15 Replies View Related

Android :: How To Set Notifications Behavior On EVO?

Jul 13, 2010

Does anyone know how to set the notifications behavior on the EVO? Specifically with Google Talk? I would like the phone to beep at me only once when someone sends a google talk message, and then not ever again for the following messages until I unlock the phone's screen and reactivate the google talk app. I think it already works this way for email, but not for Gtalk. Can this be done? And, I already know that if I open up the chat session, the sounds shut off on successive messages. However I would like it to stop the beeping without opening the chat window.

View 1 Replies View Related

Android :: Customize Spinner Behavior

Apr 21, 2010

I want to customize the spinner behavior a little bit. I want to add a couple of buttons at the end of the drop down menu that is displayed when the user selects the control. Any idea how this could be done?

View 4 Replies View Related

Android :: Odd Behavior With A Search Activity

Oct 24, 2009

I have a package with two activities

1. A main activity 2. A search activity

The search activity is invoked by a search suggestion provider in two possible ways

1. By clicking directly on a suggestion invoking the search activity through a VIEW action 2. By clicking on the explicit search icon invoking the activity through SEARCH action

If it is invoked through SEARCH I stay on the search activity and show some text to the user. Now when I click the back button I go back CORRECTLY to the home page.

ODD Behaviour: However if I came to the search activity through the VIEW, I invoke a browser activity and call finish() on the search activity. Now I have the browser in my view. If I now go back I would expect to go back to teh device home page. But from now where the "main activity" is showing up.

I see in the logcat a message from ActivityManager indicating

moveTaskToBack: 8

I have tried various flags to invoke the browser activity the tried flags include new task previous is top and I have also tried both a singleTop and otherwise with the SearchActivity as well. Same end result.

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved