Set Up Default Selections For Both Radio Groups?
Oct 30, 2011
I am making a very basic android app. Basically, the app displays two radio groups, with three radio buttons per group. After selecting a radio button from each group, the user clicks another button (let's just call it "Done"), which records which radio buttons are selected and, based on that information, will launch another activity (so there are nine different activities that could be launched).
1) How do I make it so that when the user clicks Done, the program will check which radio buttons are selected and then know which activity to launch? I was thinking of using a switch statement, but I am unsure how to write the code for that.
2) Is there a way to set up default selections for both radio groups?
View 4 Replies
Aug 7, 2010
I want to remove some of the default contact groups like "VIP". I already have one called favorites why would I want VIP and favorites? Seems redundant. This is for a HTC EVO
View 2 Replies
View Related
Sep 7, 2010
How are people using the contacts manager in EVO? It seems impossible to organize things logically. I can't delete the default groups ("vip", seriously?), which just clutters things up. I can't figure out how to make a folder on a home page from one of my groups. When I sync my contacts into windows, the group assignments gets lost, and I have to sync EVERYTHING, meaning my poker buddies and some chick I saw a movie with once end up on my work computer...
View 4 Replies
View Related
Nov 25, 2011
is there a app to replace the default FM Radio in HTC Wildfire S without rooting it.
No Streaming. Only the available FM station available after attaching the headphone.
View 7 Replies
View Related
Aug 15, 2010
How do i add music to the selections for notifications on my evo?
View 2 Replies
View Related
Sep 3, 2010
when you reboot into recovery mode, how do you click on one of the selections? I can scroll down to each one but none of my buttons will initiate the selection. They just turn off my screen.
View 3 Replies
View Related
May 29, 2010
Recently I noticed that a lot of button selections on my screen are screwed up. I get symbols like %%% instead of what it's supposed to say.
See pictures:
Now, i am rooted. But I really dont think it's my rom as I hadn't noticed it before.
I think It might be Shapewriter Keyboard... but i am not sure. Before everyone tells me to use Swype... i do. But i like Shapewriter because of different languages.
Anyway, when i hold down the text field, i dont see "input method" anymore. I see this:
I click on "copy all", then I get this: .
It's very weird. Everything works fine. Anyone have any ideas?
I also noticed it when an app force closed. I had the same type of symbols on the force close button.
View 4 Replies
View Related
Aug 23, 2010
I got my samsung galaxy S today and when i wanted to put some movies and music to my phone internal memory (because i do not have micro sd card yet) and when i connect it to PC it doesn't show USB modes it looks like it has only one selection to KIES ant it shows that black screen with big usb plug in the middle of the display, so where is all Internet and mass storage selections ?
View 1 Replies
View Related
Apr 23, 2010
I'm trying to create a multiple selection list where the selection is represented graphically rather than with checkboxes.My list has checkboxes, but I want them to serve a different purpose. I'm using a cursor to hold my data and created a custom view binder for the SimpleCursorAdapter. I did this for the checkboxes and general flexibility.So far I haven't even been able to show one line as being selected. I've enabled multiple selection on the list and denied the children of the list item focusability. I've tried manually changing background color with the position fed in through the list item click listener. But the wrong items get changed and they don't even change to the right color. I've enabled touch focusability with no improvement either.Ideally, I'd like the trackball highlight focus bar to appear in multiple places. But I don't think this is possible unless you use the drawable directly. But I don't know how to find or apply it. My next idea was to have a slim view bar that changes color. But I had the same problem with the wrong item being selected so I never finished trying to guess the index position to see if this would work. My most recent idea is to completely swap out the view for another one if it's selected. But I have no idea how to do this either. I'm thinking of using an array list to store the _id s of the items that need a different view to get around the wierd selection problem. I'm also thinking of passing in the ID field as my from and the selection view as the to for my adapter. Then I'd intercept it with my binder and change the view accordingly. But once again, I'm not sure how to do this successfuly.
View 7 Replies
View Related
Jul 29, 2010
ON my incredible I used to get a sound when making selections and such but now its barely audible. My volume is all the way up. What happened?
View 5 Replies
View Related
Oct 1, 2010
Audible selections do not make any sounds anymore. It was working fine today; later on, however, I had suddenly noticed that whenever I touch various buttons, icons, widgets, etc. on the screen, there was no audible sound. I tried rebooting, but that did not help at all. Also tried unchecking & checking the Audible Selection box, problem still remained.
View 1 Replies
View Related
Sep 9, 2010
I currently have code that creates rows in a table that hold a string in column 1 with a RadioButton in column 2. There can be a variable number of these rows. That all works just great, but I want to add them to a RadioGroup so only one button can be toggled at a time. When I tried to add the dynamic RadioButton to the RadioGroup AFTER I added it to the table row, I got an error saying that the child (the RadioButton) already had a parent. I agree, it does have one, the TableRow.
can you have radio buttons tied to a radio group inside of a row or, should I just code my own toggle mechanism and avoid RadioGroup all together? I mean, I could code the onClick to unclick all other radio buttons, but I would rather not do this if I can use the build in RadioGroup.
<ScrollView
android:id="@+id/ScrollViewModifyGroups"
android:layout_width="fill_parent"
android:layout_height="fill_parent".............
View 3 Replies
View Related
Mar 2, 2010
I have multiple radio buttons which I want to layout using a table but also include them in a single radio group. I have the following xml layout:
<RadioGroup android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/Group1">
<TableLayout android:id="@+id/RadioButtons"
android:layout_width="wrap_content".........
But unfortunately the radio buttons inside the table seem to ignore the fact that they're inside of the RadioGroup tags and because of this you can select more than one radio button at the time. I noticed that by removing the table and just having the radio buttons it works just fine. How can I overcome this? Would it be as simple as declaring the radio group inside of the table instead of outside?
View 1 Replies
View Related
Jul 14, 2010
I turned on my Droid this morning to listen to MSNBC and I heard the last 5 minutes of Keith Obermann (5:55 am est) and then all of my news and talk channels disappeared! Channels like CNN, C-SPAN, MSNBC and NPR are all gone from my favorites and the channel line-up. There is nothing in the "News and Public Radio" category.
Has anyone else noticed this? I'm thinking this must be a temporary glitch but I would hate to lose all of these channels. If you have the Sirius/ XM radio app, would you please check this on your Droid?
View 4 Replies
View Related
Sep 9, 2010
I currently have code that creates rows in a table that hold a string in column 1 with a RadioButton in column 2. There can be a variable number of these rows so I cannot just create it in the layout xml as radio1, radio2, etc. My code displays the table with the string and RadioButton pairs just great, but I want to add them to a RadioGroup so only one button can be toggled at a time.
When I tried to add the dynamic RadioButton to the RadioGroup AFTER I added it to the table row, I got an error saying that the child (the RadioButton) already had a parent. I agree, it does have one, the TableRow.
My question is, can you have radio buttons tied to a radio group inside of a row or, should I just code my own toggle mechanism and avoid RadioGroup all together? I mean, I could code the onClick to unclick all other radio buttons, but I would rather not do this if I can use the build in RadioGroup.
View 8 Replies
View Related
May 3, 2010
Depends on the size and gauge of the wire of your headphones. Also depends on the position of the wires. FM radio is a little picky, but works fine- depending on the points mentioned. Old & wrong: The FM radio on the Inc must be the weakest radio in a phone, evah! Just tried it today and picks up half the channels my Ngage and N900 pick up well. A lot of channels barely come in, or are static filled. I thought Steely Dan said "FM has no static at all"? Makes the CDMA radio seem not that bad, in comparison I know- at LEAST it has a radio. Must be set to suppa powwa savva mode
View 32 Replies
View Related
Nov 10, 2009
I just got my Droid but I frequently use Pandora and Last.FM on my computer at work. Last.FM - Seems like the service has a better list of artists than Pandora so i switched to it on my PC recently. On Android the service is the same but as an app it tends to be open in the background all the time and suffers from not being able to pause (like the PC version). The scrobbling could be nice for some users and it links to the android player. Sound Quality seems excellent, best of the three so far. Pandora - Haven't gotten to use it too much because it takes so long to load my station. Sound Quality seemed fine with my limited use.
Slacker Radio - Has the most music options of the three and seems likes the best application. It has plenty of options like keeping the screen from freezing while plugged in and on wifi without having to change your phone settings. Had to stop listening from poor sound quality though! Sound Quality started ok but a bassy boom and click started appearing after a few songs, forced to switch to Last.FM.
View 49 Replies
View Related
Nov 10, 2009
Does anyone have an idea when we will see one of these apps for android?
View 37 Replies
View Related
Feb 28, 2010
Android supports recording from the mic to amr format in the 3gp container. On the upcoming HTC Desire or even current HTC Desire, suppose I'm listening to the lovely built in FM radio and I want to make a recording of a breakfast show; would that be possible? Is there a possiblity for an app to be created that could record the built in radio in this manner? What about recording in a better quality like mp3? Does Android need to provide API access to the output speakers or... I am not reffering to internet/streaming radio, this is about the built in FM radio found in the latest HTC smartphones.
View 1 Replies
View Related
Jul 22, 2010
What uses more battery, Wi-Fi radio or 3G Radio ? I'm using an Eris.
View 7 Replies
View Related
Dec 15, 2009
I have installed Dolphin and like it, and I've made it my default browser, which is great. However, it is not only the system default, but it even opens links I click on in the Android provided browser (sometimes I both open). On your computer, when you click links in your non-default browser it doesn't send the links to the default one, and it shouldn't on this OS, either. Any ideas how to keep Dolphin as my system default browser, but not have it open links I click on in the Android web browser?
View 1 Replies
View Related
Jun 23, 2010
Is there a way to do groups in a listview? Like I have a list of certain states, each state has its own sublist. I'd sort of like to replicate the HTML optgroup/option setup where you have a parent group then child groups. Is there a way to do this built in or would I have to do something tricky with a custom view for Parent elements then switch the view back to the child element style.
View 3 Replies
View Related
Oct 5, 2010
Android developer is the only part of my life on google groups and call me thick but I can not for the life of me understand how it works ! I have the hardest time following a thread I'm participating in because I can simply not find it back when I look for it, even using the search engine at the top ! I'm not receiving email alerts to warn me when somenone answers in it. In my profile tab, there is a summary of my last messages ... Which lags by 2 weeks !! Sometimes message I sent never appear there at all. I'm subscribed to a "Gay Pictures" group I'm pretty sure I never applied to.
View 6 Replies
View Related
Jun 7, 2010
When I create a contact on the phone and assign a group, there are TWO 'friends' and TWO 'family' groups. All the contacts I setup from my GMail account show up in one 'friends' or one 'family' group. The duplicate groups are both empty. I went to an area where I can delete groups but the empty 'friends' and 'family' groups cannot be deleted. However, it looks like the groups I setup at GMail (where all my contacts are in) CAN be deleted. I'd rather not delete those groups because then those contacts will probably no longer be in a group, and the GMail/GContacts distinction will probably be lost. The reason this is annoying is because when I create a new friend contact from the phone I don't know which 'friends' group to add it to. Has anyone else noticed this? Checking my GContacts only shows one 'friends' group and one 'family 'group', but the way.
View 1 Replies
View Related
Apr 9, 2010
I dont know if there is anything out there, I have got groups set up containing up to 20 people but when I try to forward a message it says that I can only send to 10 maximum. Is there any way around this?
View 3 Replies
View Related
Aug 19, 2009
Although my phone happily syncs contact groups I have added, it doesn't sync any of the default groups already available like family and coworkers. I've got around the problem by creating new groups and using those instead.
View 6 Replies
View Related
Nov 24, 2010
New to android and really like it. However, seems like the maintenance of contacts is a common source of confusion. I have contacts from my Gmail displayed. I have a created a group of contacts that I have been able to add contacts to. However, not all contacts are available to be added to this group.
Under the general contacts page, all the contacts are there (including many imported from gmail that I don't care for since every email that has ever been used seems to be saved). When I go to edit the group and add a contact, not all the contacts are displayed as available to add. I have gone into my gmail contact list and made sure that the contact I want to add is listed under the "my contacts" heading.
View 1 Replies
View Related
Feb 24, 2010
I want to send mass text messages to about 5 people in my phone at once. How do I group them?
View 8 Replies
View Related
Apr 11, 2010
I know a big nation wide "meet and greet" had been discussed which sounds fun but $$$$$ so I was wondering if anyone was gonna start "local" support groups in their cities/towns.I think it would be a great idea to get to meet other "incredible" people in my town which we can share thoughts, tips and tricks with about our phone.Anyone in Naples, Marco, Bonita, Florida wanna get together after we get our phones and do a little "show and tell"?
View 9 Replies
View Related
Oct 14, 2010
I synced facebook to my contacts. I want to add some of them to certain groups but when I go to do it none of my contacts are there? What gives?
View 8 Replies
View Related