HTC Incredible :: Outside / Daylight Screen Performance?

Apr 23, 2010

The Engadget review said it was pretty much unusable when sunny outside. Many of the reviews mention the poor performance of screen outside. I really do not have issue with this if this is only referring to direct sunlight. I can always turn so that the screen is in shadow. I have looked for videos of phone operation outside but I have not found any. I need to be able to use phone outside and in car with no issues. Could people that have Incredible comment on how it performs outdoors when it is sunny?

HTC Incredible :: Outside / daylight screen performance?


Motorola CLIQ : Moto Update New - Improved Performance - Battery Life - Software Performance And Stability

Feb 20, 2010

Motorola CLIQ Over-the-Air Update
[Retail Partner Sales - T-Mobile Employees and Authorized Dealers]

February 19 Update
The over-the-air update for the Motorola CLIQ has been delayed to the week of February 22. An updated article will be available once a date has been determined.

On February 18, Motorola will begin sending over-the-air (OTA) software updates to Motorola CLIQ customers. The software update will improve device performance and resolve several known issues.
Improved Performance:
Improved battery life
Improved software performance and stability
Improved widget response
Decreased Force Close error messages
New Manage SIM Card application
Support of .WMA and .WAV media files
Removal of the imeem mobile application
Known Issues Resolved:
Accessories & Bluetooth
Error: 'Unable to pair' or 'Unable to connect to device'
Call functions
Can activate other functions while listening to visual voicemail
Call not ended by pressing the End key
Speakerphone turns on unexpectedly when answer incoming call
Plays ringtone or vibrates while on an active call
Unable to answer incoming call using �Slide to answer� feature
Accidentally opens Dialer or makes outbound while holding device
Device hardware (battery, keys, power, screen)
Battery indicator may not display accurate battery power
Call not eded by pressing the End key
Touch screen issues
Cannot answer incoming call using the Slide to answer feature
Incorrect keys registered using on-screen keyboard
Touch display appears to have �dead spots� that are unresponsive
Accidentally selects item when trying to flick through screens or menus
Messaging
Wrong message deleted
Phone may reset when turning Wi-Fi off in area with no Wi-Fi coverage
Customers can manually download the OTA on demand by going to Settings > About Phone > System Updates. Customers do not need to wait for a notification message to download.
Action Steps
Be aware of the fixes and enhancements included in the Motorola CLIQ update.
If customers are experiencing any Known Issue that will be resolved by the software update:
Do not file a handset exchange
Advise customers that the issue will be resolved by a software update on February 18.
Important Rebate Changes
[Retail Partner Sales - T-Mobile Employees and Authorized Dealers]
Customers eligible for rebates as part of new activations or upgrades must be advised they will receive their rebates in the form of a prepaid Visa card.
When customers take advantage of our new Early Upgrade or Early Upgrade Plus options, they are not eligible for upgrade rebate cards. These new upgrade options allow customers to take advantage of upgrades sooner and provide an instant discount, instead of having to wait for rebate cards.
To be eligible for an upgrade rebate card, customers must meet upgrade eligibility requirements.
Current, 1-year contracts: 11 or more active months since last discounted handset purchase.
Current, 2-year contracts: 22 or more active months since last discounted handset purchase.
Rebates on eligible purchases require contract extensions and a $9.99 or higher Data/Messaging feature.
Valid only on FlexPay plans with 1 or 2-year contracts.
Not valid for Even More Plus plans.
Active Months: The number of months in which the account has been in good standing and during which service has not been suspended.
Action Steps
Inform customers that Early Upgrade and Early Upgrade Plus are not eligible for upgrade rebate cards.
Advise customers eligible for rebates that they will receive their rebates in the form of a prepaid Visa card.
"With the purchase of your new handset, you can submit a rebate form to receive your rebate. The rebate will be in the form of a prepaid Visa card that can be used anywhere Visa is accepted. See the rebate form for additional details."
Trackball Replacement Program
[Retail Partner Sales - T-Mobile Employees and Authorized Dealers]
On February 24, T-Mobile will launch a Trackball Replacement program for BlackBerry Pearl 8100/8120 and BlackBerry Curve 8320 customers that are having trackball issues. This program will be available in T-Mobile retail stores only at this time.
Action Step
Refer customers to a T-Mobile retail store after February 24 for further assistance if they come in to your location looking to complete a trackball replacement.
First Connect for Dealers
[Retail Partner Sales]
First Connect for Dealers is an exciting class designed to help on-board and prepare Retail Partners to successfully sell T-Mobile products and services and provide differentiated customer experiences. This four hour class is conducted via the T-Mobile Live Virtual Classroom and covers the following:
Welcome to T-Mobile
Who is T-Mobile?
PCC
Differentiated Handsets
Differentiated Rate Plans
Service Excellence / Selling Skills
Tools and Resources
Customer On-Boarding
The attached flyer contains dates and times for these calls as well as registration details. ADRs should educate their locations about these calls and encourage them to attend.
To successfully be able to attend the training sessions, Retail Partners should have the following:
Computers with high speed Internet connections
The ability to play and hear video segments on the computer using speakers or headset
The use of a fully charged mobile phone to hear the audio portion of the conference call
Printer access to print Participant Workbook.
Action Steps
Share the attached flyer with your locations and encourage them to attend one of the scheduled calls.

View 1 Replies View Related

Android :: How Does Emulator Performance Compare To Real Device Performance?

May 23, 2010

I'm looking into writing an Android game, tough I don't curerntly own an Android device. For those of you who own a device, how does the performance on the emulator relate to real device performance? I'm especially interested in graphics related tasks.This obviously depends on both the machine running the emulator, and the specific device in question, but I'm talking rough numbers here.This question is a duplicate, but since that post is heavily outdated, I figured it's irrelevant by now.

View 3 Replies View Related

Android : Does Screen Orientation Change / Effect Performance?

Jan 21, 2009

From reading Romain Guy's blog post, I understand keep static reference to a Drawable can create huge memory leaks. So what is the recommended solution if I don't want to reload my big Drawable image every time screen orientation changes and effect on performance? Currently my app takes >3 seconds to complete each orientation change.

View 8 Replies View Related

Android :: Drawing Bitmaps On Screen In Game Without Slow Performance

Sep 16, 2009

I want to make a tile based game for android. At the moment I am drawing each tile as a separate bitmap. I have a big for loop that reads from a string and draws different tiles depending on what character it finds to draw the level. I have allowed the user to scroll the screen using scrolling gestures. However the game is too slow. It takes a long time to update the screen after the user scrolls. I presume this is because it has to draw each tile's bitmap individually. What would be a faster way to draw the level? I was thinking I could merge all the tiles into one bitmap. But I don't know how to do this.

Anyway here is my code so you can see the problem:
package org.example.tutorial2d;
import android.app.Activity;
import android.os.Bundle;
import android.view.GestureDetector;
import android.view.MotionEvent;
import android.view.GestureDetector.OnGestureListener;
import org.example.tutorial2d.Panel;
public class Tutorial2D extends Activity implements OnGestureListener {
GestureDetector gestureScanner; Panel main;
/** Called when the activity is first created. */
@Override public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
gestureScanner = new GestureDetector(this);
//requestWindowFeature(Window.FEATURE_NO_TITLE);
main = new Panel(this); setContentView(main); }
@Override public boolean onTouchEvent(MotionEvent me) {
return gestureScanner.onTouchEvent(me); }
@Override public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) {
main.handleScroll(distanceX,distanceY); return true; }
@Override public boolean onDown(MotionEvent e) { return true;
} @Override public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) { return true;
} @Override public void onLongPress(MotionEvent e){
} @Override public void onShowPress(MotionEvent e) {
} @Override public boolean onSingleTapUp(MotionEvent e) { return true; } }

And the class that does all the work:
package org.example.tutorial2d;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.drawable.Drawable;
import android.util.Log;
import android.view.View;
import org.example.tutorial2d.Point;
public class Panel extends View {
private int scrollX = 0; private int scrollY = 0;
public Panel(Context context) { super(context);
} @Override public void onDraw(Canvas canvas) {
/*Bitmap scratch; //Drawable scratch;
//scratch = getContext().getResources().getDrawable(
// R.drawable.icon); canvas.drawColor(Color.BLACK);
//scratch.draw(canvas); int origin = 0;
scratch = BitmapFactory.decodeResource(getResources(), R.drawable.horizontal5);
canvas.drawBitmap(scratch, origin, origin, null);
int width = scratch.getWidth(); int height = scratch.getHeight();
scratch = BitmapFactory.decodeResource(getResources(), R.drawable.room4entrynesw3x3);
canvas.drawBitmap(scratch, origin + width, origin - 32, null);
[Code]

View 3 Replies View Related

HTC Incredible : Need Opinion About Call Quality Performance

Apr 30, 2010

Just got the HTC DROID INCRED yesterday...was pre-ordered. Like to know if anyone has expereinced of call quality like dropped calls, audio breaking up and poor reception in general? I understand there is a "quere" on how many bars appear on the display, but frankly coming from a Blackberry Storm 2, I have never had any of these issues. The location is well within city limits and was never a problem with other models of phones. Any possible patches or fixes in the works?

View 1 Replies View Related

HTC Incredible : Battery Performance With LauncherPro Is Weaker Than Sense

Jun 28, 2010

I installed LauncherPro and loooove it. However, I noticed my battery life is even more pathetic than it was on sense. Since unplugging at 8:30, I'm down to 80% already. I even disabled live backgrounds because I thought that might be the culprit. Has anyone else found that battery performance with LauncherPro is weaker than Sense? Or am I just being sensitive?

View 8 Replies View Related

Android :: Get Date Of Start And End Of Daylight Savings?

Jul 1, 2010

I am trying to get the transition date for daylight savings in Android. That is the date that daylight savings start and ends for a specific timezone.

View 2 Replies View Related

Samsung Moment :: Potential - Daylight Saving Time

Mar 13, 2010

I live in Arizona, and we don't observe DST. On my computer, all my Google calendar appointments from tomorrow on have the correct time and my calendar time zone is set to Arizona. On my device, everything tomorrow onward has been shifted ahead one hour, as if DST should be affecting my appointments.

View 4 Replies View Related

Android :: Date.getTime() And Daylight Saving Time?

Jul 19, 2009

What will Date.getTime() returns in a region with Daylight Saving Time enabled? Does this function returns a DST time or not? I call Date.getTime() in a place with DST (such as U.S.), and convert it to a local time in China (no DST), I get a wrong time (one hour ahead of local time in China). How can I fixed this problem?Maybe I didn't tell tings clearly, but we don't use DST in China... I don't understand DST very well.

View 7 Replies View Related

Android :: Handcent Timestamp Glitch - Daylight Saving?

Nov 8, 2010

I'm a Verizon user in the US Pacific time zone (GMT-8) and ever since daylight saving ended yesterday, I've had a glitch on my incoming message non-Verizon timestamps...they come in as GMT. I just received one at 1:42pm and it says 5:42am. This has been happening all day yesterday and today on messages sent from non-Verizon customers but the ones from my Verizon-using wife are just fine. I can't find any way to fix it in the software itself.

View 4 Replies View Related

Samsung Epic 4G :: Daylight Savings Time By 2 Hours Instead Of 1

Nov 7, 2010

I live in the central time zone. This morning I woke up and my phone decided to adjust for daylight savings time by 2 hours instead of 1. I checked the time and date settings to find that the date settings were checked to "automatic". Somehow the phone decided I was in the Mountain time zone instead of central. why/how that would happen? If I uncheck the automatic, and manually change my time zone it works fine.

View 17 Replies View Related

Sprint HTC Hero :: Daylight Savings Affecting Calendar?

Mar 10, 2010

My appointments are coming up 1 hour late? Anyone have same problem? Daylight savings coming Mar 14 anything scheduled after that is being thrown off.

View 11 Replies View Related

LG Ally :: Daylight Savings - Option To Switch Clock Manually?

Oct 31, 2010

I woke up this morning to find that my Ally has the wrong time in the notification bar, as well as one of the widgets that i have for an alarm which shows when the next alarm comes up. however, the correct time shows in the weather widget. as it is Sunday morning, i looked up daylight savings and noticed that the clocks in Europe get set back an hour today. could my phone somehow be in European mode or something? maybe an android 2.1 glitch, since it came out after the last fall switch if I recall and therefore may not have been tested for a problem like this. I can't find an option to switch the clock manually anywhere, is there a way to fix this or do i just wait a week for the US daylight savings to click in?

View 4 Replies View Related

Android :: Repeating Alarms With AlarmManager And Daylight Saving / Leap Years

Feb 9, 2009

I'm looking for a way to trigger repeated actions. I'd like the user to be able to choose the intervals at which these actions will be executed. One should be able to choose from intervals like "Every Day", "Every Month", and "Every Year". The setRepeating(int, long, long, PendingIntent) method of the android.app.AlarmManager class only supports a long value for choosing the interval between the execution of the pending intent. My problem now is, that I can not just compute the number of milliseconds that "fit into one day", since not all days have the same length (daylight saving). This is also a problem for the interval type "year" (leap years).

I had a quick look at the android.os.Handler class, but as I understood the documentation I'd need to keep a service thread running for my actions to be executed at some future time. I don't consider that a good option for my needs ;-) Is there anything in the API I could configure with a cron expression or the like? I was also thinking about scheduling an alarm with the AlarmManager for a single execution at a given date/time and then having a receiver that does the rescheduling according to a cron expression attached to the intent. But I don't know if I just got something completely wrong here and I'm reinventing the wheel with that approach

View 2 Replies View Related

Sprint HTC Hero :: Daylight Calendar Error - Moved Back An Hour

Nov 2, 2009

I wake up this morning groggy and otherwise just tired so I check my Hero to see what time it is, 7 am. Now I want to see when my first class is so i go into my calendar to see what I had lined up for the day and what do I find? All my times were moved back an hour!! Anybody else find this strange?

View 22 Replies View Related

General :: How To Set Default White Balance To Daylight Every Time In Galaxy S Advance

Jan 18, 2014

every time I set the whitebalance to daylight its gone and goes to auto mode when I relaunch camera everytime how to set the default white balance to daylight every time in my galaxy s advance.

View 1 Replies View Related

Sony Ericsson Xperia X10 Mini/pro :: Handle Daylight Saving Time With Calendar?

Oct 26, 2010

I'm the new owner of an X10 and I'm, so far ;-), really happy about it. I still have an issue that prevent me to throw away my old Palm agenda. I have a Google Calendar that is synchronised to both my Palm and now mu X10. I notice a strange "one hour shift" issue with my X10: every appointment after the Daylight Saving Time is shifted from one hour on the X10. I figure that this is related to the way the X10 handle the daylight saving: the automatic setting for the time zone is GMT+02:00:HMG+2:00 whereas Google calendar says correctly that Paris is on the GMt+01:00 with a one hour shift due to summer time. Is there a way to fix this issue that prevent me from using the agenda?

View 4 Replies View Related

Samsung Behold 2 :: Daylight Savings Time - Alarm & Calendar Alerts Not Working Correctly?

Mar 15, 2010

it looks like its an Android bug, but my alarm & my calendar alerts are not working correctly, as well as CalWidget. My Google Cal & the Cal on the phone are correct. I had to reboot to get the time updated to what it should be today.

View 5 Replies View Related

HTC Incredible :: Disable Auto Screen Dim Upon Screen Shut Off

Jul 19, 2010

Since root has been attained, I have a feeling this app would be possible:An app that disabled the screen dim right before the screen times out.My guess is (and please correct me if I'm wrong) that the voltage outgoing to the screen changes, and therefore dims the screen. If an app could be developed that maintains this voltage, the screen could be at a constant voltage, and not dim, ever.Has anyone heard of an app like this, and, if not, is there anyone interested in developing this?I am sure a lot of people (like myself) would be willing to donate for a program like this.

View 3 Replies View Related

HTC EVO 4G :: Still Best Performance From Snap 7.1

Sep 5, 2010

I've been trying all the new kernels out there and still my best performance is coming on Snap 7.1 running the latest cm6 nightly. Quadrant over 2200 and Linpack over 39 (see pictures): I don't think Snap 7.1 gets into all the heavy voltage regulation stuff. For me, I'm not willing to sacrifice performance for an extra hour of battery (I just bought a bigger battery).

View 1 Replies View Related

HTC Aria :: How Is Overall Performance?

Jul 22, 2010

I was considering getting this phone. I know its not a 1GHz snapdragon, but how is the performance overall?

View 7 Replies View Related

HTC EVO 4G :: Poor 4 G Performance?

Jul 13, 2010

Am I the only one, or is there a problem with the EVO and 4G speeds? In the Houston Area, I get anywhere from around 600 kb/s to 2600 kb/s speed. In most all cases, the 3G speed is faster than the 4G. At home, I average around 700 kb/s with 2-4 bars signal strength showing. Tech support is working on this with me and trying to determine if it's a phone problem, or tower problems. I had a chance today to journey around the area within about a 10 mile distance, thus insuring it changed towers. Service stinks on 4g, to say the least. Clearwire tells Sprint Tech Support that the tower for my home has low use, and good throughput. If the tower is good, and the software on the tower, then there may be a HTC EVO problem of some kind as this is the same on 3 different HTC EVO's purchased within 2 days of each other.

View 2 Replies View Related

HTC EVO 4G :: Way To Increase GPU Performance

Jul 16, 2010

I've heard about overclocking the Evo's processor but I was wondering if there is any way to increase GPU performance?

View 2 Replies View Related

HTC Incredible :: Phone's Shattered Incredible Screen

May 2, 2010

So i think i might have the first shattered Incredible screen. I dropped it from two feet onto the metal camera protruding part. It hit with very little force. You can barely even see the mark from falling. So i pick it up and notice the entire screen is shattered when the screen was face up, the screen didn't even hit the ground! I can't believe how thin the Incredible screen is, it literally crumbled jut from the force of a light fall. I'm unimpressed in the build quality of the glass. I want to contact HTC about this and see if they can help me out, it seems like a manufacturing defect, maybe a weak screen? I need to find the biggest case that i can find for my replacement, one that could absorb a fall if it falls on the back part. I am thinking maybe a pillow as a case? That might help. Now im out ANOTHER 100 bucks to make an insurance claim on this. I highly recommend people keeping the insurance, the screen blows up even if it is not directly the part that hits if it is dropped.

View 49 Replies View Related

HTC Incredible :: Stuck At HTC Incredible Boot Screen

Aug 20, 2010

I rooted a few days ago and did the forever S-off. I have ROM Manager loaded and was poking around in the system. I downloaded Skyraider and ROM Manager asked me to reboot. Not thinking it wouldn't let me know what it was doing when in recovery before doing something the rom had been applied. Now the Phone has for 40+ minutes been at the "HTC Incredible" boot screen.

I have read not to pull the battery but The power Button and Volume button do nothing so I could really use some suggestions. As a little more info I have not flashed the radio yet so it was a 1.x radio that a 2.2 rom was just seemingly applied to.

Bricked or recoverable? I have a Nandroid backup if someone can help me get back to that point...

View 5 Replies View Related

HTC Incredible :: Incredible's Amoled Screen Vs Evo Larger Lcd

Jun 8, 2010

I have an Incredible and a friend just got the Evo. I also went to HTC's Evo launch party in NYC so I've had my fair share of time with it and I have to say, IMHO, I was shocked at the difference in AMOLED vs LCD.

I never really gave much thought to it and I always thought it wouldn't really make a difference but HOLY COW.

It was the first and glaring thing to me whenever comparing the phones. Everything from the home screen to widgets to photos, videos, web sites. It was quite dramatic. The LCD on the Evo always looked kind of washed out since I've become used to the AMOLED.

The viewing angles, crispness, deep blacks and color saturation on the AMOLED is a huge win for me.

View 10 Replies View Related

HTC Incredible :: Screen Quality On Incredible Vs. Droid

Apr 29, 2010

I just got my incredible in the mail to replace my droid and i'm hoping that i just have a lemon here. anyone that is coming from a droid, do you notice a huge drop in quality in the screen resolution vs the droid? yeah, the incredible's screen is brighter, but the screen is so heavily pixelated compared to my old droid. it's a big shame because i absolutely love the phone but the websites are almost unbearable to read.

View 29 Replies View Related

HTC Droid Eris :: 3G Performance Hit With 2.1

May 19, 2010

I just updated my Eris to 2.1 on Monday and ever since then I haven't been getting the same 3G performance (i.e signal strength). Places where I usually saw 3 bars, I'm only seeing 1 or less. Has anyone else experienced this?

View 16 Replies View Related

Android :: Bad Battery Performance

Aug 16, 2010

I deleted all battery monitoring apps and stopped looking at the battery usage info 50 times a day. I did this over one week ago, and couldn't be happier. No more looking at that god awful percentage meter, no more watching in dismay as it drops, and drops, and drops. My battery performance has never been better now that I quite looking at it all day and my sanity has slowly begun to return.

View 5 Replies View Related







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