HTC EVO 4G :: FM Radio Not Working - Only Static Heard

Jun 4, 2010

I cant get the FM radio to work at all when I plug in headphones and turn it on all I hear is static no matter what station I goto. It would be real nice to get it working so I can use it while I'm walking. If I don't find a solution eventually I am going to take it into sprint and see if its defective and get and exchange for another Evo.

HTC EVO 4G :: FM Radio not Working - Only static Heard


HTC Incredible :: Wireless Not Working Without Static IP

Jul 27, 2010

When I use wifi at my house I have to put in a static IP or I get nowhere. I acutally have not tried this anywhere else but is there a way I can find out what info its is pulling for IP and DNS?

View 1 Replies View Related

Replace Single Row View In Custom STATIC ListView - STATIC Data

Mar 18, 2013

I have Eclipse Juno and I'm working on an app with that.

The main activity will have a scrollable menu that takes you to all the other activities.

So the general structure/outline right now:[HIGH]Relative Layout ImageView (header logo type thing) ListView (the actual scrollable menu)[/HIGH]Here's the problem though... I can't find any simple list tutorials. I can easily make a single line list work but I need to make a two line list and one that is static, not dynamic and no examples are out there for that. It's like if you want to make a 2 line list, you can only learn how to do it in the most code-heavy ridiculous way possible.

Essentially what I am looking for with the list is this: Item one: Centred, bold, non selectable title (Resources)

- Item two-??: two line list items, click-able to a new activity, title of the section on first line, description on the second line.

- Item ??: Centred, bold, non selectable title (Tools)

- Item ??-??: two line list items, click-able to a new activity, title of the section on first line, description on the second line.

Nothing dynamic that is ever going to change, no super complex wonkey calculations, just to simply have the data set in stone (preferably via XML) and to call it into the list.

I experimented with some of the other list views and no matter what I did, I could get, via editing the resources and NOT using Java, more that one item on a single line but it wouldn't format it properly according to the layout I guess because I haven't got the ID correct or whatever I don't know.

I mean, all the examples I've seen for a 2 line list are extraordinarily over-coded and just bloated. I mean I have a website I am still working on in C#/ASP.net that has far more complex things in it with half the code that I've seen for the examples of the two line lists.

I tried on my own to figure it out (I am decent with C# and vaguely familiar with Java, self taught, and programming for some other systems like Python, again all self-taught), but like ALL coding references, they're organised by the actual code you implement (that you don't know) instead of by what you want it to do (so you have to search the whole code base to find something that you don't know what it's called but know what it does). >:C

View 10 Replies View Related

Android :: Call Non Static Method In Static SQLiteDatabase Class

Mar 30, 2010

i want to display a msg to the user (msg box or Toast) when exception happend in a static SQLite Database class that i use. the problem is that i cant call a non static method in a static class , how can i handle this. this is the class

private static SQLiteDatabase getDatabase(Context aContext) {

and i want to add something like this in the class when exception happen but context generates the problem of reference to non static in static class.

Context context = getApplicationContext();
CharSequence text = "Hello toast!";
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context, text, duration);
toast.show();

View 1 Replies View Related

Android :: Cannot Make Static Reference To Anon-static Method

Feb 7, 2010

I'm having some issues with the old "Cannot make a static reference to a non-static method" error in my Android program. I am creating a sand falling game (similar to the Powder Game) and I created a class called Control to create a Control Bar at the bottom of the screen with a slider for brush size (that works fine) and a button to pop up a Dialog to allow users to pick the selected element. However, when I call DemoActivity.showDialog(2) from my code, it gives the static reference to non-static error (DemoActivity is the main activity of my application). I also tried changing it to just Activity.showDialog(2), but I got exactly the same error!

Here's my code:

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

I fixed it by adding the following to my Control.java code:

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

And then calling control.setActivity(this); from my onResume section of DemoActivity.java!

View 2 Replies View Related

Android :: Non-static Method Cannot Be Referenced From A Static Context

May 26, 2010

I am modifying the source code here: http://thinkandroid.wordpress.com/2009/12/30/getting-response-body-of-httpresponse/

I get this error:

code:.............

This error is line 13 on the second box.

View 5 Replies View Related

HTC EVO 4G :: FM Radio Not Working

Nov 4, 2010

I'm on Fresh and the FM radio tuner has been removed. It's in the "Fresh-removed-apks-3" folder. I tried installing from HtcFMradio.apk using ES File Explorer and I keep getting "Application not installed". I copied and pasted it to the sdcard main folder and tried from there and get the same issue. I also tried File Manager and AppInstaller.

I found another .apk online and tried installing from that apk, now I get a force close every time I try to run it. I read somewhere that wiping the data using Settings > Applications > Manage Apps > All, etc then resetting it works, but Clear Data was grayed out. I wiped the data with Titanium and then reset but I'm still getting a force close...

View 8 Replies View Related

HTC EVO 4G :: Water Indicator Red (Out Of Box) And Radio Not Working

Jul 2, 2010

So I just received my sprint Evo last night and the 4g radio wasn't working. I did the master reset etc., all troubleshooting possible I used to work for data support for a wireless carrier so I was familiar with what needed to be done. I called and after talking to a few people they agreed to send me a replacement, charged my card for the replacement said I would be refunded when they got the other phone back.

So today at work the evo froze. I opened it up and realized that the water indicators for the battery and the phone were showing red. I hadn't even had the phone for a day and it was nowhere near water. I called support and the tech guy I spoke with said that they would just replace the phone and probably wouldn't ask any questions and refund my money. I am just curious if I should be concerned with having to hassle with sprint when they get the phone back. I don't know if this happened in transit or on the manufacturers end. I am also not sure if that technicians word means anything.

View 1 Replies View Related

General :: Nexus S Not 4G - Radio Not Working

May 23, 2012

I have a Samsung Nexus S (Not the 4g version) I just picked up and the radio seems to not be functioning. No matter which sim card I insert into this thing the radio still comes up with zero bars I've switched the roms around a few times and I'm currently downgrading to the PeterAlfonso's Bugless Beast with the custom kernel in hopes that maybe flashing these two things may have a positive effect on my issue.

View 1 Replies View Related

Android :: Static Vs Non-static Inner Classes

Mar 9, 2009

I have been finding it convenient to extend Handler in many of my activities to handle messages specific to the activity. The handler sublass is an inner class of the activity and needs to access its state. I am wondering if there is any performance difference between making the handler subclass static and passing in the activity explicitly in its constructor or making the subclass an "instance class" and letting the vm worry about my accessing members of the containing activity.

The static approach:

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

View 4 Replies View Related

General :: Gingerbread 2.3.7 - HTC Touch Pro 2 Radio Not Working

Jun 10, 2013

I just updated my wm 6.5 to android Gingerbread 2.3.7, but I have no internet 3G signal, what could be the problem?

On the same note:

1) How do I update the profile? I do not see an option anywhere in the settings.
2) How do you load a radio rom - I'm guessing this is something that is causing my internet issue.

View 2 Replies View Related

Sprint HTC Hero :: Online Radio Not Working With Fresh 1.1?

Jan 22, 2010

I had A online radio working last week. I just tried it now and it doesn't stream anything. Anyone have problems with this or anything like that? I uninstalled and reinstalled the program and same affect, starts to buffer then just says "stopped". Pandora is working fine for me.

View 17 Replies View Related

General :: Galaxy Ace - Bluetooth / FM Radio And Playstore Not Working On New PAC ROM?

Dec 11, 2012

bluetooth, fm radio, playstore not working on new PAC rom for galaxy ace....... ?

View 1 Replies View Related

Samsung Moment :: Panda Radio Not Working After Froyo 1.8.7 Flash

Oct 11, 2010

After flashing Radioactive Froyo 1.8.7 Panda Radio doesn't work. It loads but when I go to run it a popup appears and says it has stopped unexpectedly to retry. No matter retrying it won't work.

View 4 Replies View Related

Sprint HTC Hero :: Way To Manage Radio 5 Live Working On Phone?

Jan 25, 2010

I just wondered if anyone had managed to radio 5 live working on the htc hero?

View 5 Replies View Related

Samsung I7500 :: Radio Stack / Phone Function Stop Working With I5?

Sep 30, 2009

Had a few days of use without issues, go to make a call yesterday and it takes ages to connect, but instead of connecting I get a beep and then it returns me to my contact list. Tried putting the phone in and out of flight mode by holding down the power button and selecting the flight mode option, the option turns grey after I press it, won't allow me to press it again and seemingly does nothing. Press the off option and turn the phone back on and it's fine. Now I reckon I had suffered this with earlier firmwares.

View 26 Replies View Related

HTC Desire HD :: Ticking Heard Through Earphones

Oct 25, 2010

my DHD just landed on my door step about 1 hour ago, very impressed so far.One thing that's concerning me is there is an audible and rhythmical ticking/clicking being heard through my ear phones (Ultimate ears 5). It almost sounds like a clock.Has this been experienced before and does anyone know of a solution.

View 5 Replies View Related

HTC Hero :: Heard Notification Sound But Nothing On Task Bar / What Is It?

Nov 6, 2009

Everyday I am getting this short notification sound a few times but there is nothing shown on the task bar. There is no incoming SMS or calendar event. And it is not the alarm clock. What is it?

View 5 Replies View Related

Nexus :: Ringtones Cant Be Heard / Make It Louder?

Jan 19, 2010

I got my nexus one a week ago, ive been trying to fiddle with it and found some cool things.. any ways well i wanted to add a ringtone and i did, but when it came to someone calling me i can barely hear it ring.. its a problem i had with the phone since the beginning , the speaker sucks big time.. has anyone found out how to make the damn thing louder..

View 6 Replies View Related

Samsung Moment :: Microphone / Voice Muffled And Cannot Be Heard

Feb 19, 2010

I searched all through the board and couldn't find anything on this problem: When I'm talking to my wife on my Samsung Moment, she often complains she can't hear me. She says, "speak into the microphone!" Even if I speak directly into the hole in the bottom of my Moment, she still says my voice is muffled and she can't hear. When I switch to my bluetooth earpiece she hears me perfectly. I use my bluetooth all day long (this is my work phone), but then after hours, I prefer to ditch the ear-itating earpiece.

Three questions:
Is my Moment's mic busted?
Is my wife hard-of-hearing?
Must I permanently insert my earpiece, babel-fish style?

View 3 Replies View Related

LG Ally :: Phone Muted - Sounds Only Heard Through Headphone?

Oct 24, 2010

I was listening to music through my car jack cord and when I unplugged the cord its like the phone got stuck in that mode and now I cant hear nothing unless I plug in a headphone jack or something.

View 5 Replies View Related

Motorola Droid X :: Can't Be Heard On Speaker Phone After Rooting

Aug 4, 2010

After I rooted my DX a week or two ago, I've noticed that whenever I try to use speaker phone, my callers can't hear me at all. They definitely could hear me before rooting...?

View 2 Replies View Related

General :: Call Waiting Beep Heard By 2nd Caller

May 13, 2013

I have the Galaxy S2 jelly bean version. My problem is that when I am on a call and I receive another call, I get the notification beeping sound, and the person I am talking to also hears the beep and becomes aware that someone is trying to call me! The person I'm talking to should not hear the beep or know that I'm being called by a third person!

how to prevent/turn off the beep to the person I am talking to without turning off call waiting ?

View 2 Replies View Related

Android :: Static Method In Java Accept Only Final Or Non Final Variables Within Its Method - But Not Static

Sep 15, 2010

Why should a static method in java accept only final or non final variables within its method, but not static?

For example I have the following method:

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

View 6 Replies View Related

HTC Incredible :: Microphone Sensitivity / Lot Of Background Noise Heard On Other Side

May 10, 2010

I got my Incredible on 4/29, and have loved every minute with it. My only complaint is that when I am actually on the phone, the callers on the other end hear a lot of background noise. The microphone seems to pick up everything. I cannot even talk on the phone if I am in an environment that has any ambient noise because callers are bombarded with the ambient noise. On this note, I was just wondering if there was any way to change the microphone sensitivity and back it off a little bit so that it is usable in environments that contain some ambient noise.

View 4 Replies View Related

Sony Ericsson Xperia X10 :: Anyone Heard About Update Release Date?

Sep 20, 2010

This is my 1st post here. Please let me know if anyone know aboutt android 2.2 update date? and Is SE going to release this update world-wide? I live in Australia, so wondering if anyone can tell me abt AUS release.

View 6 Replies View Related

HTC Aria :: Message And Email Sounds Alerts Heard During Calls?

Jul 10, 2010

I just got my Aria! I am so Loving it! I have a, What I would think to be Simple Question, When I am on the Phone and Receive a Message / Email I hear it in the Phone.

View 9 Replies View Related

Android :: GSM Waves Sound Heard Through Headset / Its Normal - Solve This?

Jul 15, 2010

When you're making a call with a speaker near a mobile phone, you hear noises resulting from electromagnetic stuff, in the speaker. The problem is that I hear such noises in my headset. It appears as not normal, and also happens if I have the headset at the maximal distance from the mobile phone.

Is there somebody having the same problem as me? How to solve this? Is it normal?

View 9 Replies View Related

Motorola Droid X : Cannot Hear / Be Heard While Making Calls Since 2.2 Update?

Sep 22, 2010

So I updated to 2.2 OTA this morning and since then I cannot hear anyone and they cannot hear me while making phone calls. I tried the *228 and reprogrammed my phone with no luck. Is anyone else having this issue?

View 6 Replies View Related

General :: Jelly Bean 4.1.1 - Call Initiated Vibration Heard By Other Side

Jan 4, 2013

I've recently bought a MKT6577 Galaxy 3 clone - HDC S9380.

The phone is running on Jelly Bean 4.1.1

Whenever I'm making an outgoing call there is a call connected vibration when the call is picked up by the other side, the feature is nice, but the problem is that the person I'm calling is able to hear this vibration in their phone. Is there a way to disable this vibration, or delay the microphone initiation?

I already tried changing all the sound and vibration settings in the phone without any success.

View 4 Replies View Related







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