HTC EVO 4G :: Light Leaks On Ebay Phone

Jul 2, 2010

I bought an EVO off of Ebay about a week or so ago and just noticed my light leakage is getting pretty bad. I have sprints insurance on it so I was wondering a few things.

1. Will it be a pain to turn it in for a new phone, and what do I have to pay to do so...I'm guessing they will send me a new one then I'll mail mine back to them>?

2. Would it be the smarter thing to do to wait just a little bit to see the new builds? I'm using a 0003 with a nova screen.

HTC EVO 4G :: light leaks on Ebay phone


Samsung Vibrant : Case For Phone Other Than Through Ebay?

Jul 20, 2010

Does anyone know of U.S. suppliers of a gel / silicon case for the Vibrant?

My local T-Mobile store only ordered three of them (not smart).

I see a number of them on Ebay, but they seem to all come from Hong Kong, so I'd be looking at two weeks of shipping to the U.S.

View 5 Replies View Related

Android :: Need Ebay App?

Jul 3, 2010

What happened to the Ebay app from Ebay.inc(official one)? I can't seem to find it anywhere on the Market.

View 6 Replies View Related

Samsung Galaxy I7500 :: GAOSP Gapps Light / Ultra Light

Oct 26, 2010

These packages are alternative gapps. These Gapps should improve performance. On top of that all apps are up to date (like YouTube). Ultra Light version will also remove unnecessary preinstalled apps like yaam, DSP Audio Manager and so on (and some more gapps of course).

View 13 Replies View Related

Android :: Get Official Ebay App?

May 16, 2010

Apparently there is one but I cant find it!

View 3 Replies View Related

HTC EVO 4G :: Extend Battery From Ebay?

Jul 14, 2010

I found this battery on ebay and I'm wondering if anyone here had tried it.

New 3000mA Extended Battery+Cover For Sprint HTC EVO 4G - eBay (item 180532669327 end time Aug-12-10 08:42:50 PDT)

View 7 Replies View Related

Motorola Droid :: Where Are RC 2.2 Leaks?

Jun 19, 2010

Is it just me, or does it seem like it's been, what, a couple months since the last Froyo RC leak? Ok, maybe more like several days, but aren't you guys starting to jones hard for a newer 2.2 leak? When the first couple came out so quickly one after the other (along with the multiple new baseband versions) it seemed like it was going to be raining Froyo leaks (that sounds odd, doesn't it?) on an almost daily basis. I'm running well on BB Froyo v.2.0 plain vanilla, but looking forward to the next 2.2 RC to stumble out of Moto/Verizon's castle so we can continue the informal beta testing for them.

View 15 Replies View Related

HTC EVO 4G :: Ebay Has 19+ EVOs For Sale From I/O Devs

May 21, 2010

If you want an EVO right-freaking-now and are willing to (over) pay for it, you can have it! I just counted at least 19 Google I/O developers who are selling their free gifts on Ebay. It appears they come with free network usage for a limited time, but I didn't really investigate that far. The going rate seems to be around $750.

View 3 Replies View Related

Samsung Galaxy S :: Car Docks On Ebay

Jul 3, 2010

there have been a couple of posts asking about car docks for the galar xy S vibrant - someone showed up on ebay today offering 3 different types priced pretty cheap - $11 to 13 shipped they don't have built in charge connectors, but for the money don't look bad as well as someone else offering Invisible Shield screen protectors for $14 shipped and Morgan Fields protectors for $16 nice to see some accessories already hitting the market.

View 1 Replies View Related

HTC Droid Eris :: New Hboot For 2.1 Leaks

May 23, 2010

I have been messing with my eris. I held the power and send button and as usual it checked the leak file and asked if I wanted to update. At this time I noticed a list from one to four., one thing that was listed was bootloader and another was hboot My question would there be a way to get into the 2.1 leak file and some how switch the hboot and bootloader in it with the hboot and bootloader that is on the official ota file or some other jnoot or bootloader. Then convert it back to a zip file and reinstalling it like out was a v4 leak. Sorry if this was a stupid post but just trying to help leak users or devs brainstorm a little.

View 5 Replies View Related

Android :: Will Code Cause Memory Leaks?

Aug 3, 2010

Will the code cause a memory leak? Essentially I switch between various layouts in my application using setContentView(), and I have member variables of my activity that maintain references to various views (buttons/text views) on the layouts. Am I correct in thinking that if the activity class has a reference to a button and then changes layouts the layout wont be garbage collected because it will still hold a button reference? If this is the case, can I just null the button variable before changing layouts?

View 3 Replies View Related

Android :: FileNotFoundException When Pointing To Ebay.com From Mobile

Sep 7, 2010

If I pass http://www.ebay.com to this. Somewhere along the way ebay changes my url, perhaps a redirect. What's weird is Android java can't open the page. u = new URL(txturl.getText().toString());

I get the error below as it apparently opening the new mobile site. I'm just wonder at what point my url changes and If I somehow stop this. It does not appear to happen if I point to yahoo, google, amazon or other major sites. I just noticed this in my testing.

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

View 1 Replies View Related

Android :: How To Find Where Memory Leaks In Activity?

May 20, 2010

When start Activity A, I found the memory usage of application is about 5MB. Then start Activity B from A via startActivity. In Activity B, I created a thread, and traverse file system in this thread, after traversing completed, call finish() and to return to Activity A. At this time, I found the memory usage of application is about 8MB (GC is forced before check memory usage). How to find Where memory leaks? By the way, I checked the memory usage with DDMS.

View 5 Replies View Related

Android :: List View And Memory Leaks

Oct 23, 2010

I have a very simple application which has a problem with getting ListViews to be freed by the GC. i have a ViewGroup which has a ListView. When the page with the ViewGroup no longer has any references to it, and I force a GC, the ListView is not freed. The project in question is quite small and can be found at http://gabysoft.com/download/MemoryLeak.zip. If you run it, the first page has a button and a ListView (which has no items so you cannot see it). When you press the button it switches to a second page which has just a button. When you press the button on the second page, it creates a new ViewGroup and ListView and sets that as the current view. Thus, every time you switch pages, a new ViewGroup/ListView is created, and all references to the old one go away. Hence the old one should be GC'd. However if you switch views 20 times and then force a GC you will see that the ListViews are never freed (i.e. their finalize method (which is logged) is not called). Now here is the really weird part. This happens ONLY if I build my project using Eclipse. If I use Ant to build and install the project, the ListViews are all freed when I do a GC as you would expect. Why would the Eclipse version exhibit this behavior?

View 7 Replies View Related

Android :: Memory Leaks With List View

Oct 20, 2010

I have a class 'GListView' which extends ListView and acts as it's own adapter. It is declared thus: public class GListView extends ListView implements List Adapter In it's constructor, I set it's adapter to itself

View 2 Replies View Related

Android :: Register Callback Leaks Memory?

Mar 5, 2010

I was trying to find out were my apps memory was being leaked and was able to discover that when calling registerCallback(...) it would lead to a memory leak after a screen orientation change. What could be some possible things that are causing the leak? I've tried many things. And I do have a unregisterCallback(..) call.

View 20 Replies View Related

Motorola Droid X :: Advantages Of 2.2OTA Vs Leaks?

Oct 14, 2010

Now that it looks like the 2.2 SBF is online, how many people who are running leaks are going to upgrade to the 2.2 OTA that supposedly include an updated bootloader/kernel/radio? For those who did already, do you see any differences at all? Moto made some claims that the new one was better (i.e. that switching between wifi and 3g would be more seamless), but have people noticed differences? I guess I held out on upgrading to OTA because of the no SBF and the whole episode of the unlocked bootloader, but now should I consider upgrading? Would I lose any advantages of staying on the old boot loader?

View 7 Replies View Related

Android :: References To A Context And Memory Leaks

Jul 27, 2010

I've read that it is a mistake and a source of memory leaks in Android application to keep a long-lived references to a Context.

But I don't understand if it is ok to create an class that looks like this one:

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

And call it from an Activity:

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

View 2 Replies View Related

General :: How To Find Which Apps Cause Memory Leaks

Apr 22, 2013

Any user friendly android app which can effectively show which apps cause memory leaks on a phone?

I can only find developer tools to detect memory leaks within apps like Eclipse MAT. Sadly I'm not a developer so I would rather prefer just a list of apps to uninstall and not the exact cause of memory leak within a specific app.

View 6 Replies View Related

HTC EVO 4G :: Orange Charge Light And Red Light Appearing

Sep 30, 2010

I accidently sat got my evo into some water on our bathroom the other night and now my phone is acting weird. I disconnected the battery and the phone and allowed them to sit in bags of rice for a few days to draw out the mositure. I turned the phone back on and found the camera is no longer so the water must of wicked in through there, but what is troubling me is the orange charge light comes on as well as a red indicator light on the other side.

View 2 Replies View Related

Android :: Need Social Apps Facebook / Twitter / EBay

Oct 18, 2010

I have just bought my first Android phone today and having used an iphone and Blackberry in the past I wonder if I can get similar apps. Are there any there that will suffice.

View 2 Replies View Related

Samsung Epic 4G :: Ebay Get Browser Out Of Mobile Site

Nov 18, 2010

Ebay latched onto my Epic like avirus and I can no longer use the classic site.Mobile site is not functional for my purpose,I can't do completed auction searchs.How can I get the mobile site off my phone?I already deleted cookies and history.Or is there an App that does searches?Desperate here as I use it daily.

View 3 Replies View Related

HTC Droid Eris :: Any Quality Protector Screens From Ebay?

Jan 20, 2010

Something $10 or cheaper that is good and works specifically for the eris and is easy to apply

View 3 Replies View Related

HTC Incredible :: Using Dolphin Browser I Can't Buy Stuff On Ebay / Find It?

Jul 19, 2010

I can only "watch" the item and look at it but there is no purchase button how can I find it?

View 2 Replies View Related

Android :: 'Avoiding Memory Leaks' Article In Blog

Apr 10, 2010

I just read the article 'Avoiding memory leaks' in android blog written by Romain Guy. http://android-developers.blogspot.com/2009/01/avoiding-memory-leaks.

View 4 Replies View Related

HTC Droid Eris :: Downgrade To 1.5 From OTA 2.1 (doesn't Work For Leaks)

May 18, 2010

I found this on Android Central (thanks to IzelTokatl) and someone there did verify it worked for OTA 2.1 phones. I tried it on my leak version 3 phone and I got the Hboot error again. I'm thinking this does not bode well for phones with the leak as once Verizon releases the upgrade for download from PCD or HTC we still won't be able to use it until the Hboot problem is fixed. The following instructions for doing the downgrade to 1.5 are cut and pasted from the Android Central forum and I edited them for PC's: Download the MR2 Upgrade Eris ROM from verizon partner: personal Communications Devices

1. Unzip the file
2. Plug your phone into your PC.
3. Navigate to folder ADR6200_MR2_Upgrade
4. Run .exe file in the folder (RUU_Desire_C_Verizon_WWE_1.17.605.1_release_signe d_with_driver.exe)
5. follow on screen instructions.

View 11 Replies View Related

Android :: Trace Memory / Window Leaks In Droid?

May 17, 2010

How to trace the Memory Leaks in Android Development? I am working on eclipse IDE to develop the application. i cant find out how to rectify the memory or window Leaks Exceptions? Any Idea.

Mainly the Window Leaked error raises the Illegal Argument Exception? how to rectify both og this.

View 1 Replies View Related

Samsung Captivate :: Contract Ebay Sealed - Run Auto Turn Off

Aug 14, 2010

I ordered a brand new captivate without contract on ebay sealed. If I ever run into those auto turn off problems, will I be able to switch it out for another one if I have the original box?

View 16 Replies View Related

Android :: AppWidgets - Reusing RemoteViews Instance Leaks Memory?

May 21, 2009

I'm writing a widget. Currently, I'm have a simple ImageView, and calling RemoteViews.setImageViewBitmap(). I'm using a service to do the updates.

I thought it might be a good idea to reuse an existing RemoteViews instance, so I'm only querying it the first time around, and subsequently simply call setImageViewBitmap() with the new image.

This works well initially, but after some time I first start getting "!!! FAILED BINDER TRANSACTION !!!" errors, and later, an OutOfMemory exception.

Simply creating a new RemoveViews instance every time works flawlessy on the other hand. I'm just curios why that would be, any ideas?

View 2 Replies View Related

HTC EVO 4G :: How To Set Notification Light On Phone?

Sep 4, 2010

Does any one know how to set the notification light on the phone so it blinks when you have a missed call or text when the phone is charging? Cant seem to find this option, I find it weird Android doesn't have this option as default to begin with.

View 3 Replies View Related







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