Android : Need App For Sirius Satellite Radio
Nov 7, 2009Can anyone tell me when an app will be available for Sirius satellite radio? I have a my touch 3g and cant find anyway to stream Sirius...
View 2 RepliesCan anyone tell me when an app will be available for Sirius satellite radio? I have a my touch 3g and cant find anyway to stream Sirius...
View 2 RepliesSirius announced the new Sirius/XM Android Application is available today! For more information visit: SIRIUS|XM on Android
View 1 Replies View RelatedHas anybody found a XM/Sirius radio app? Or heard any rumors on when it's coming if not released?
View 3 Replies View RelatedHas anyone found a way to stream sirius radio from their evo using the online sirius flash player? Using orb and usirius (or any other similar program) seemed to do the trick on the iPhone. Can't get that to work on the evo though. Launching the online app itself does everything but play the stream. I have the sirius app, i'm looking to stream the channels that aren't supported by it.
View 2 Replies View RelatedCan I listen on my hero. If so I will sign up.
View 16 Replies View RelatedAnyone know of a fix with the Sirius satellite radio app looping issue. I've seen that its an issue after getting froyo.
View 10 Replies View RelatedAny chance for A Sirius radio app? I had on for my old WinMo 6.1 phone, so I'd think it would be possible (not to mention the iPhone has one too).
View 5 Replies View RelatedJust as the title indicates....
What about an app that works like the online media player for Sirius/XM online listeners?
I have a Damageless ROM loaded and I cannot find the app in the Market. Anyone with official 2.1 see it?
View 2 Replies View RelatedI have a Sprint Samsung galaxy S2 (Epic 4G). I need to get the user name and password from my sirius app. I understand these are stored in .db files but i can't find com.sirius anywhere on my phone. I know i could call XM and get the password but i have special circumstances and this is not an option as I used the free trial and it never stopped working. Been like 8 months now even stayed working after sirius app update. Is there anyway I can recover the user name and password that the phone is using to log in as I just got a galaxy S3 an dont wan to loose my free XM.
View 1 Replies View RelatedIf you are out of cell tower and wifi range, as in wilderness, can your adroid phone be of any support in navigation? Does this require special software or phone model? Is this practical if you are paying for minutes?I have yet to purchase a smartphone but looking for one-device-does-all.
View 10 Replies View RelatedMy Wild Blue Satellite is down. I can get the internet on the 3G with my HTC ERIS. How can I use this to view on my PC?
View 4 Replies View RelatedI just want to show text "please wait" while app is searching for satellite and show "ready" when we found and connected to satellite.
View 1 Replies View RelatedI want to know to launch a satellite application using Intent, i knew how to launch the map application using Intent, but i want to display satellite view rather than map view, my code is uri = Uri.parse("geo:0,0?q=" + VALUE_baraddress1[0] + ", "
+ VALUE_baraddress2[0] + ", "
+ VALUE_baraddress3[0]);
Log.v(TAG, VALUE_baraddress1[0] + ", "
+ VALUE_baraddress2[0] + ", "
+ VALUE_baraddress3[0]);
startActivity(new Intent(Intent.ACTION_VIEW, uri));
How can i use internet satellite on my android tablet?
my tablet model is:archos 80 g9
Just upgraded my phone firmware to 1.6, and it looks like Location objects don't have satellite counts in them any more:
locMan = (LocationManager)con.getSystemService (Context.LOCATION_SERVICE); Location loc = locMan.getLastKnownLocation (LocationManager.GPS_PROVIDER); Bundle extraBundle = loc.getExtras();
extraBundle is null. So, I can't call
extraBundle.getInt("satellites").
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".............
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?
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?
it might be a dumb question or in my manual what does the Satellite mean when it appear in task barat the top of the phone.
View 15 Replies View RelatedI got this issue with my SGS2 that I started to get into the running and started to need more of my gps to track my training and Ive noticed this weird behaviour of my gps.. It just wont even search for satellites whenever the 3g is on (you know the alert that says searching for gps).. installed the GPS checker to see if there was no satellites or something but it wont even search for them whenever I have the 3g on.. I found that the GPS works only if I disable the Mobile Data and restart my phone.. So I cant have both at the same time.. the minute I enable the 3g data it stops working and I have all the GPS options checked at the configuration and the wifi 3g assist.. What could be causing this?
I have JellyBam 9.0.0 cyanogen mod based 10.1 and baseband XXXKI4
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.
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.
I've noticed this appeared a few times by itself user input. How do you close this? (without using task killer app?
View 2 Replies View RelatedWhen I turn my GPS on the satellite shows that it is active, I do my thing and when I turn gps off the satellite icon shows as active in the notification heading broadcasting still I have to reboot phone for it to disappear. Anybody else have this prob with the eris?
View 2 Replies View RelatedThe Iphone has a neat app that helps you setup a satellite dish showing the arc location. It also is incorporated with google skyview. Has anyone seen an app like this yet for the droid?
View 1 Replies View RelatedIf I have tower coverage than I have satellites, normally 7 to 9 of them. If there is no tower coverage then I have no satellites which means no maps & no GPS which really makes me want to toss it. Has anyone else run into this?
View 8 Replies View RelatedI was wondering if anybody had the same issue with GPS as I did. When I launched Locations first time, it found the satelite very fast. Now it almost cannot find a satelite to update my location. I wrote almost, because once it did manage, but that was once in at least twenty tries. Do you have any idea how to check if the radio is ok. I read somewhere that one should try with master reset of the phone. If so, would it be enough to backup my data with Titanium backup and option "Backup all users apps + system data" and restore it later on? Will that make a full restore of my phone or do I have to backup some additoial data? Like, what will happend to my personalize data, apps passwords etc.
View -1 Replies View RelatedA Verizon rep told me the X can navigate either by satellite or cellular reception, but my X instructs me to turn on the satellite receiver. Is there a way to navigate with cellular?
View 4 Replies View RelatedDoes anyone have an idea when we will see one of these apps for android?
View 37 Replies View Related