Android :: Setting Spinners OnResume Doesn't Work
May 8, 2010
I want to save text from 2 edittexts(et1,et2) and selection from 3 spinners(spinnerm,spinner and spinner2) onPause and setting them back onResume.
Text from edittexts is saved correctly, only spinner selection don't work as desired.
My code:....................
View 1 Replies
Feb 12, 2010
Sometimes it works and sometimes it doesn't. I have a profile for "in dock" to turn on GPS and bluetooth. Last night it didn't shut off and this am - DEAD battery. I've noticed sometimes in the dock it doesn't turn those features on either - but sometimes it does work?
View 4 Replies
View Related
Mar 13, 2009
Just had an odd problem with a TextView. Setting the visibility doesn't seem to work but doing the same on say a ScrollView does. Is this normal?
View 3 Replies
View Related
Sep 23, 2009
Setting the background color programatically of an android TextView doesn't seem to work.
I'm I missing something!
CODE:.............
I also have this file (colors.xml) in my res/values folder
CODE:................
Also, setting the text color causes the TextView to disappear.
CODE:..................
View 4 Replies
View Related
Jun 2, 2010
SMS Popup works on 2.2 -- but the setting to increase the speed doesn't work. The color changes work (note, they don't work on the app's own test function, you have to send yourself a text), which I love, but I had to uninstall after realizing that the speed increase doesn't work.
View 8 Replies
View Related
May 2, 2010
I have so far found two bugs in Galaxo 1.6.3:
a) Speaker doesn't work in call (very weak). works well in ringtones etc.
b) Scrolling contacts by letter doesn't work.
Other than that this is a leap forward, especially with the overclock options!
Both bugs, as well as others, fixed in 1.6.3.1 update!
View 49 Replies
View Related
Dec 8, 2009
I'm trying to determine whether or not my phone is defective, or if this is a current problem with the Cliq.
Of the apps I've downloaded, only a few of them have worked. Of those few that work, some don't work right. Has anyone had problems with these apps crashing on them, or just not working correctly?
- Nice Battery (see description at bottom of: My Ultimate CLIQ settings (so far))
- WeatherBug (kept showing the wrong location, crashed when trying to change location)
- Snake - doesn't work just says its "paused"
- RingDroid - crashes when I select the "Facebook Pop" button
- Layar - screen is rotated 90 degrees at all times
There have been others, but usually I just uninstall them right after discovering it doesn't work right.
View 3 Replies
View Related
Jun 14, 2010
I've had an HTC Desire on Orange in the UK for about 6 weeks and it is having persistent problem. Firstly despite having a strong 4-bar out of 4 signal, online services and the internet do not work at all when a 3G signal is being received (e.g. news, weather, all widgets, internet, email etc).Calls and texts do work however with a 3G signal.But when a 3g+ signal (HSDPA) is being received, all internet services as above work fine.However, when a 3+ signal is being received, the phone does not make or receive calls or text messages, and often fails to send texts. Calls I make immediately shut down (bleep + �call ended�), and incoming calls from other people go straight to answerphone. Also often when turning the data connection on/off, it freezes and has to be rebooted, and turning airplane setting on and off does not fix the problem.
I have also tried the different network settings (GSM, WCDMA, auto, etc). �GSM� sends and receives calls and texts but doesn�t work (or is incredibly slow) with internet, and �auto� and �WCDMA only� show the problems as above.I don't think this is a network/coverage issues as, as I have seen many people reporting these same issues on other networks and in other parts of the UK, and I have read that other people are having to manually turn off HSDPA to be able to make calls (using an app?). Even if I can stop HSDPA from connecting to make sure the phone works, I still can�t use the internet at all on 3g � even GSM works better!
Finally, when I connect to a bluetooth device (e.g. car and headphones) the phone will connect briefly, and then randomly disconnect. I have also seen this issue reported elsewhere.I very much like the phone and don't want to get rid of it, but these problems are making the phone unuseable.Also I don't know if I should be contacting HTC or Orange about this. Will the upcoming Android 2.2 fix these problems?Anyone know how to fix this or if I need a new handset? Are there any apps that can help? Also does the Nexus One have these problems and are they fixed by Froyo?
View 4 Replies
View Related
Sep 16, 2009
So I made a discovery - my dialpad doesn't work during a call. Even if I bring it up via the softkeys, the numbers don't register a tap...anyone. else have this issue or is it just my phone?
View 49 Replies
View Related
Oct 15, 2010
I have a problem with ListView, it seems a bug, setting a textsize for textview of a ListView, not all separator line are shown! (ListView doesn't show all item separator)...
you can see the in this screenshoot: http://yfrog.com/myselezione002p
I have prepared a little testcase for this issue: [url]
View 4 Replies
View Related
Sep 15, 2010
I am trying to create 2 different spinners in my main layout. This is how it works. Let's say the 1st spinner shows the different continents (e.g. America, Asia, Europe, etc.). Assume a user chooses Asia in the 1st spinner. My question is, how to make 2nd spinner to communicate with the 1st spinner? Meaning, the 2nd spinner is suppose to display the countries inside Asia (e.g. China, Korea, Singapore, etc.) due to Asia was chosen in the 1st spinner.
View 1 Replies
View Related
Jun 19, 2010
I have yet to get a decent picture with the camera. My Blackberry Tour took great shots without any fuss. I tap to set the focus to specific points in the shot, but it never gets sharp. They always look grainy or soft. Anyone else having this issue or do you have hints?
View 1 Replies
View Related
Apr 13, 2010
I will try to explain a simple app scenario: My app goes right to a 'main view'. In this main view I have inserted a 'TextView' which displays current settings created by way of the PreferenceManager. For simplicities sake, let's say I have a checkbox in my settings. When I first start my app - the TextView on my main view shows my checkbox setting correctly (true). Now I go to the settings menu, it pops-up, and then I change it to false. I go back to the main view and...no change. It still say's true even after I changed it to false. If I end the app and then re-start it - all is well and it shows my change.
Apparently the main view just stays in the background while I'm changing settings? How can I redraw or update the main view after I change settings?
View 2 Replies
View Related
Jun 14, 2009
This is a general architectural question. I want to offer a user a simple two page form. The first page will have a few Spinners for the user to select options from. The second page will have a series of EditTexts for the user to fill in. After the second page, the user clicks a button to generate a text file based on the values they have input. My question is: What is the best way to handle preserving the data from the spinners on the first page of the form, in order to place them into the text file? I feel like the "architecture" should be something like this: 1. User selects Spinner values on first page and clicks button to move to next page of form.. 2. Spinner values are placed in database 3. User fills in EditTexts on second page. Clicks button to generate text file. 4. Database is queried for Spinner values, which are added to newly created text file, then EditText values are added Does this strategy make sense? Does anyone have advice on a better way of handling the gathering of two pages of form input then using it to create a text file? The user would need to be able to flip back and forth between the form pages as needed.
View 4 Replies
View Related
Dec 10, 2009
I am using spinners in my application, but when I click the drop down icon the options coverthe entire width of the screen. But I want the options to cover only some part of the screen(ie.. width). By using LayoutParams I am able to change only the spinner icon width but not the options width. I even searched for it,but of no use. Any one help me, I need it very badly.
View 5 Replies
View Related
May 25, 2010
Default spinners on the iPhone look a lot better than on Android. It looks like at least one Android app (UrbanSpoon) has been able to replicate this control, and it's awesome: http://www.urbanspoon.com/android Anyone have any ideas on how to create this?
View 3 Replies
View Related
Jul 8, 2010
I'm trying to set up my work e-mail and the e-mail language (exchange server, POP, IMAP, ports, SSL) has always confused me. The two ways I can access my e-mail is through Outlook in the office and webmail anywhere else.
I just downloaded K-9 and I'm trying to figure out how to set it up. Am I supposed to do it by syncing with Outlook, through Webmail, or something different. Depending on which one, do I select POP3, IMAP, or WebDav(Exchange)? I tried exchange and used my webmail logins for username and password and then the Microsoft Exchange Server name that shows up in my Outlook as the WebDAV (Exchange) server. The port defaulted at 80 and I tried to do that but it didn't work.
View 2 Replies
View Related
Aug 16, 2010
I want to keep the phone from ringing during my meal times, so I have set a profile called "Meal." I have it set to Silent mode and have turned media volume to zero (I use an MP3 song for my ring, so I figured doing both would be safer). I have set the rule to activate "Meal" from 18:00 to 19:00. I set this up over the weekend, but I got a call tonight (and it rang) at about 6:50 (18:50). Am I missing something in my settings? I have the full version, not the trial.
View 7 Replies
View Related
Oct 27, 2011
I can't get any spinners to compile. What usually happens is the resource file disappears. I am using the tutorials from the Android site.
Everyone seems to say that resource files disappear when there is an xml error. Everything looks right according to the tutorial. The error is in the xml line android:text="@string/planet_prompt". I can't move on in my project without getting spinners to work.
View 2 Replies
View Related
Aug 18, 2010
Couldn't find an answer to this...
Say I'm typing a text message and a call comes in or I go to another app or screen for some reason,(didnt send text) then come back to the messaging app the test I was typing(but didnt finish and send) is gone and I have to retype it.
Is there a setting so it doesn't delete it?
The Pre was nice because it would keep the typed unsent test till it was deleted or sent.
View 7 Replies
View Related
Nov 4, 2010
I'm trying to do my first widget but it seems not to work in the emulator: when I try to add the widget to the wallpaper, I've got the following message: "Application is not installed on your phone".
View 2 Replies
View Related
Jul 24, 2009
I've inherited a project that worked on sdk 1.0, but when I try to use them on sdk 1.5 it crashes. I'm a beginner so I'm not able to understand where is the problem..So I hope that writing on this forum someone can help me..The project concerns the detection via GPS coordinates and the notification of events close to the location where it was at that time.
View 4 Replies
View Related
Aug 17, 2010
The import com.google.android.maps.MapActivity cannot be resolved to a type.
View 2 Replies
View Related
May 4, 2009
I am using a Timer in my android application, but i can't get it to work. When I start my application the Timer simply does not start. The application continues but does not update.The long "toStart" finds the number of seconds left of the current minute, and thereafter the period is set to 60 seconds. The TimerTask simply calls a method.
View 2 Replies
View Related
Feb 25, 2010
My girlfriend and I would really like to utilize Latitude. But it's always off, behind, or wrong. We can be sitting next to each other in the same car and it will tell me where she was 12 hours ago, and on mine is has me where I currently am, but on her it has me 4 hours ago. Refreshing does nothing. I don't understand why it is not working.Also, when I am at work, which is in Indianapolis, it says I am at Center, IN. When she is a work, again in Indianapolis, it says Washington, IN. When I am at home in Greenwood, it says all kinds of stuff that's not correct.Am I doing something wrong?Also, I meant to ask, is there another app that we could use for this? This tool is handy for us because we carpool and I would like to be able to know where she is so I know when to go out to meet her.
View 9 Replies
View Related
Jan 30, 2010
WHy Is the market so bad. It's such a pain in the as#.Yes I know its being vamped in the next ROM update, but for now search for a word 8 results found.Would it be too much to ask to show me the 8 results found rather then showing me a error asking me to check my spelling. Try another key word or be more general?I already know there are 8 results why can't i see them.
View 2 Replies
View Related
Nov 14, 2009
I can't seem to get AutoCompleteTextView to work with Theme.Light.The problem is the autocomplete popup draws the suggestions text in white on a white background. You can only see what the suggestions are after they are selected, because then the white text is drawn over top of the selector background.It works fine with the default theme but not with Theme.Light.I tried setting the android:textColor attribute.That only set the color for the AutoCompeleteTextView input box, not for the suggestion's popup.Right now the only way to get my app to work properly is to use the default theme.Does anyone else have the same issue or know of a way to programically set the suggestion's popup text color or background?
View 4 Replies
View Related
Dec 31, 2009
I am facing with a problem related startActivityForResult()
To start SecondActivity from FirstActivity :
CODE:.............
And handles result :
CODE:..........
To send the message to FirstActivity from SecondActivity :
in SecondActivity :
CODE:............
I can't handle the result on onActivityResult in FirstActivity. It never works for my application.
My OS is : 1.5
View 2 Replies
View Related
Jun 17, 2010
I want to make conversation between android devices. I use BluetoothChat to do this but it doesn't work I can't read correctly data from another device.
Conversation is :
Me: privet
Device: p
Device: rivet
CODE:...........
View 1 Replies
View Related
Sep 8, 2010
I write following application:
There is an AutoCompleteTextView field as Adapter I'm using ArrayAdapter with ListArray the ListArray consists of some constant string item and one item, which will be changed dynamically everytime user typed something in the field
I took TextChangedListener to update this last list item. But it seems, that update occurs only once.
I add a bit code of me. May be somebody can show me, what did i do wrong.
CODE:.................
View 1 Replies
View Related