HTC 4G :: Evo Test Units In Stores

May 15, 2010

I just played with a test unit in Atlanta at the South Cobb Radio Shack store. It was a sprint employee who is making the rounds to different stores and talk to customers. Freakin' sweet. I have to run to a b'day party, but it is beyond amazing. Not too heavy, fits in your pant pockets very well. Meow!

HTC 4G :: Evo Test Units in Stores


Android :: How To Transfer Test Fixture File To Device From Unit Test Application?

Sep 24, 2010

I'm writing an Android JUnit test and want to copy/reset a test fixture file (it's an SQLite database file.) If I were within the main application, I know I could just place the file in the assets directory and use getResources().getAssets().open(sourceFile).However, this API appears to be unavailable from the ActivityInstrumentationTestCase2 class.Is there an easy way to copy a file over from the testing PC, or should I just keep a fresh copy of a test fixture on the device and copy it over a temporary file?

View 2 Replies View Related

Motorola Droid X :: Touchscreen Test - Drawing Lines Test

Jul 15, 2010

One more video about the fancy touchscreen of the Droid X. This one has happier results! Check it out at the link below.Droid X Touchscreen Test See you later. you'll know why this post is short when you read the blog. running downstairs!

View 5 Replies View Related

Android :: Error When Unit Test With Activity Instrumentation Test Cas­e 2?

Aug 23, 2009

I am using ActivityInstrumentationTestCase2 to do some test for an activity. I get a button in the setUp() method like this: protected void setUp() throws Exception {super.setUp(); act = getActivity(); btn = Button)act.find ViewById ( R.id.bike_button ); // this button has been defined in layout} Then I use this button to perform a click in a test method like this: public void testBikeButton(){ //click the bike button btn.performClick();}

View 7 Replies View Related

Missing Target Class To Test In Test Application?

Nov 10, 2011

I have a project (that compiles and runs in the emulator.) I have a test project that tests part of this project. This test project also compiles with no problems, but when I try to run (test) it in the emulator, I get a NoClassDefFoundError exception on one of the classes my test class tests (I hope that made sense!) when it starts to run in the emulator. This is coming out of the adb log. I looked in the bin directory (of the test project) for the missing class, but could not find it... Should it be there? I found no reference (apk, etc) of the project I am trying to test either in the test projects bin directory. How does the test project get the classes it needs to test against (in the classpath, I assume.) How do the tested classes get moved to the emulator? I did try running the app before testing, so I know it is installed and runs correctly. BTW, I am using netbeans with the nbandroid plugin.

View 1 Replies View Related

HTC EVO 4G :: Stolen From Sprint Stores

Jul 14, 2010

The EVO is in such high demand and low supply that thieves are walking out with fully-functioning display models during business hours!Yesterday, I went to my local Sprint store to purchase accessories for my EVO when I noticed that the two display models were missing. The CSR told me that a guy had snipped the cables during peak hours when the store was very busy and walked out with both phones.That same day, I went to another Sprint store and one of the display units was missing as well. Again, the Rep said it was due to a recent theft. In both locations, the EVO was the only phone stolen.Apparently the thieves are still at large. I am surprised that Sprint isn't able to locate the phones using GPS or even their own "Family locater" technology.What also perplexes me is what the thieves plan to do with these phones once they steal them. The service will eventually be deactivated. And if they try and sell them, wont they be discovered as stolen when they attempt to reactivate? I guess by then, the thieves have taken the money and run.Anyway, the EVO is such a hot and scarce commodity, that people are resorting to desperate measures!Has anyone else seen this happening in their local stores or do I just live in a high crime area?

View 13 Replies View Related

Android :: Need An App That Stores Web Pages

Aug 27, 2010

I own a G2 Touch (i.e. Hero) with 2.1 installed. I have spent ages trying to find an app that lets me upload selected web pages in advance, so that I can read them at my leisure without needing an Internet connection. This is mainly because I spend a lot of time using my phone on the underground when commuting to work, but would also be useful when I am flying. I can't seem to find such a thing, is anyone aware of a such a thing. Ideally I want one which knows my page preferences in advance and synchronizes without the need for manual input. There used to be a website called avantgo which did this (in a more cursory form) for pdas, but they disappeared a few years ago and I haven't tracked down an android equivalent.

View 3 Replies View Related

HTC Incredible : When Inc Will Be In VZW Stores - Just Available On Website

Apr 14, 2010

I have read conflicting things and frankly there are way too many threads here - does anyone know if the 4/29 date is when the Inc will be in VZW stores or just available on their website?

View 6 Replies View Related

Android :: Getting Test Run Failed No Test Results?

Aug 11, 2010

I have never used JUnit before, and now I'm trying to set it up on an Android project.My project under test is fairly complex, including some JNI, but my test project, at the moment, is completely trivial. I have found many examples (that look totally different) online of how to make a test project, but it seems that no matter which one I follow, I get the same results.Here's my JUnit project code:package com.mycompany.myproject.test;
import android.test.AndroidTestCase;public class SimpleTestCaseExample extends Android TestCase {public void test_testOne() {fail("Just Always Fail");When I run, I see the following in Logcat:
stdout INSTRUMENTATION_STATUS: numtests=2
stdout INSTRUMENTATION_STATUS: test=test_testOne
stdout INSTRUMENTATION_STATUS_CODE: 0
stdout INSTRUMENTATION_STATUS: id=InstrumentationTestRunner
stdout INSTRUMENTATION_STATUS: current=2
stdout INSTRUMENTATION_STATUS: class=com.mycompany.myproject.test.SimpleTestCaseExample
stdout INSTRUMENTATION_STATUS: stream=
stdout INSTRUMENTATION_STATUS: numtests=2
stdout INSTRUMENTATION_STATUS: test=testAndroidTestCaseSetupProperly
stdout INSTRUMENTATION_STATUS_CODE: 1
stdout INSTRUMENTATION_STATUS: id=InstrumentationTestRunner
stdout INSTRUMENTATION_STATUS: current=2
stdout INSTRUMENTATION_STATUS: class=com.mycompany.myproject.test.SimpleTestCaseExample
stdout INSTRUMENTATION_STATUS: stream=.
stdout INSTRUMENTATION_STATUS: numtests=2
stdout INSTRUMENTATION_STATUS: test=testAndroidTestCaseSetupProperly
stdout INSTRUMENTATION_STATUS_CODE: 0
stdout INSTRUMENTATION_RESULT: stream=
stdout Test results for InstrumentationTestRunner=..
stdout Time: 0.07
stdout OK (2 tests)
stdout INSTRUMENTATION_CODE: -1
But, I get the following in the Console:Launching instrumentation android.test. Instrumentation TestRunner on device emulator-5554 Collecting test information Test run failed: No test results I have tried a variety of different things, messing with the basic TestCase class, or the TestSuite class, or a variety of other options. I tried to just go for the most trivial example because I'm really still trying to learn how this works.Whatever I try, I see this error.

View 1 Replies View Related

Android :: Is It Unit Test Or An Integration Test?

Nov 9, 2010

I'm working on a school project and I'm researching testing possibilities for Android applications. On this page: http: // developer . android . com/ resources / tutorials /testing /hello android. Google writes about a unit test. Is this really a unit test? A Unit test will not integrate all classes and will not test in his context. So my opinion is it is not a Unit Test but an Integration Test.

View 7 Replies View Related

HTC Desire HD :: No Stock In Online Stores

Nov 10, 2010

I was looking on web in the last few days and all of the online stores had no stock of this phone currently. I heard new stock is coming in this week and does anyone know which online shops have this in stock NOW and ships outside of UK?

View 10 Replies View Related

Android :: Shopping App That Can Locate Stores

Sep 12, 2010

I tried searching for this but haven't been successful. I'm looking for a basic app that will tell me what stores are in my immediate location/area if I type in the name. For example, if I'm dying for a cup of coffee and search for Starbucks, it would map out the nearest starbucks stores and I could pick one and maybe head for it with navigation. I have been using Maps but think it's too nonspecific -- if I type Starbucks it will list all stores in the country; if I type in the nearest city it will give me a list of stores but not do it visually on a map. Apologies if this is too basic a question. Today I was driving around in a county not too close to home, and needed a party supply store, but couldn't find one using my phone. I searched "party store" after mapping my location, and it came up with a list of motels/Comfort Inns about 20 miles away.

View 5 Replies View Related

Android :: How To Get Maps In Metric Units?

Jul 8, 2009

This may be in the wrong forum, but I can't figure out where else to post it.
The maps app (the one from google your phone comes with by default) only shows routes in feet and miles. Is there no way to get it in meters? I can't find any settings for this!

View 1 Replies View Related

Android :: How Do I Define / Standardize Units In My 3D App?

Mar 20, 2010

I'm starting to design my object graph for an OpenGL ES 1.1 app on Android. What's advisable when it comes to actually drawing my triangles and controlling their size? Should I store all the vertices in units relative to each other and then multiply them by a value I pass during a draw(GL10 gl)? Would this approach have any impact when it comes time to do frustum culling?

View 1 Replies View Related

Android :: What Are Units Of Event.values?

Aug 23, 2009

I am experimenting with orientation sensor, register it like this: SesnorManager sensor_manager = (SensorManager)getSystemService (Context.SENSOR_SERVICE); Sensor sensor_orientation = sensor_manager.getSensorList (SensorManager.SENSOR_ORIENTATION).get(0); sensor_manager.register Listener(sensor_listener, sensor_orientation, SensorManager.SENSOR_DELAY_UI); and then read the orientation values in the sensor event listener: private final SensorEventListener sensor_listener = new SensorEventListener() { ... float sensor_data_x = event.values[SensorManager.DATA_X];}

View 4 Replies View Related

HTC EVO 4G :: Which Phone Will Sell More Units? / EVO Vs IPhone?

May 8, 2010

1st month, US sales...the EVO vs the new iPhone - which will sell more units?

View 45 Replies View Related

General :: How Many Storage Units Android OS Have

Nov 2, 2012

How many storage units Android OS have? Including a possible microSD external Card.

Internal Storage, internal memory?! Whats the difference and location in file system folders?

When an app is installed from market where does it go?

In application manager, in most apps there is an option "Move to SD card"...

If I have an external micro SD Card and choose this apps option "Move to SD card" where the heck is suppose to going the app or some part of it? (Data? Apk? Cache?) It's not in external microSD Card! So what is "Move to SD Card".

View 4 Replies View Related

Samsung Moment :: Where Phone Stores Media?

Jul 11, 2010

On my Gallery, where my phone stores media ( pictures, videos etc ), there are a lot of albums, like " Camera pictures" "Camera media " all pictures" and when I take a picture, it puts the picture into ALL 3 albums, this is annoying, is there a way I can make it to where I just have like one picture and one video folder? Seems like a waste of space to have the same things in 3 different albums.

View 2 Replies View Related

HTC EVO 4G :: Which Cases Will Best Buy And Sprint Stores Offer On Launch Day?

May 30, 2010

Which cases will Best Buy and Sprint stores offer on launch day? Any photos of them?

View 1 Replies View Related

HTC Hero :: App For Gps Navigation That Stores Maps On Sd Card?

Jan 28, 2010

Is there an app for gps navigation that stores the maps on the sd card like a tom tom would instead of using data plan?

View 5 Replies View Related

General :: Audible App Stores Notes And Bookmarks?

Oct 18, 2012

Where the notes & bookmarks are stored (within the android file system) Customer service has been 0 support. They just keep saying that there's no cloud based backup system so I can't back it up.... The files are stored on my device SOMEWHERE so there has to be a way to back them up. It kills me to think that I could lose all the notes I took through the 10+ books I've bought.

View 1 Replies View Related

Android :: What Units Does Location.get Altitude Return In?

May 4, 2009

I live in an area which is 9 feet above sea level, and when I call getAltitude I get back a value less than -10. Am I doing something wrong, is my device a failure, or is there some nifty scale that I don't know about?

View 2 Replies View Related

HTC Incredible :: Verizon In - Store Display Units?

Apr 19, 2010

Does anyone know when display units will be available to try out in the Verizon stores? Will they not be there until the 4/29 release date? I'd really like to have the hands-on opportunity before I plunk down a couple of Benjamin's on this phone.

View 6 Replies View Related

Android :: Isolating Units / Writing Tests

Jul 23, 2010

My project has the run-of-the-mill HTTP calls to fetch XML files, parsing the XML files, and creating domain objects. Those objects are later used in the actions and services of the Android app, I'd like to isolate that code. I also want to write tests for it. What are some good ways of doing this? Creating an Android Library doesn't seem appropriate. The tests would have to be in a separate project. And there are no services or activities in the extracted HTTP and XML related code. So the test suite doesn't have to be an Android test suite, it could be regular JUnit tests.

View 2 Replies View Related

Android :: Location Distance Between Units / Emulator

Feb 24, 2010

1) I have not been able to find out in which units Location.distance Between receives the latitude and longitude. Is it degrees or micro degrees? Whats the unit for the distance returned? 2) In windows XP using Eclipse 3.3.2. Emulator does not send coordinates properly. Either it by hand or by loading a gpx file the location Listener is not invoked. This same code I have tried it in Ubuntu and works fine. Does someone know how can I solve this? In the office there is no linux installed and I can take my personal laptop.

View 2 Replies View Related

Android :: Storing A User Selection That Stores Itself For Use On Reload In App

Aug 2, 2010

I've built a dialog that asks the user to pick a city from the list provided when the application first opens. The dialog works perfectly, however I want to store the user's choice so that when the app is opened a second time, it checks to see if the user has already made a selection previously. If they have, it doesn't display the dialog and defines the city variable as their previously chosen preference. And obviously, if they haven't made a selection previously (because its their first time opening the app or for some reason the app couldn't read the stored preference), it displays the dialog.

View 1 Replies View Related

Android :: Need Notes App That Stores Locally & Syncs With Cloud

Jun 5, 2010

I'm looking for a notes app that stores notes on the device and syncs with cloud

View 3 Replies View Related

Android :: Maximum Texture Units - Emulator Setup

Apr 30, 2010

this is just an issue with how the emulator is setup, but I'm not sure.

I'm (natively) calling this:

int maxt = 0;
glGetIntegerv(GL_MAX_TEXTURE_UNITS, &maxt);
__android_log_print(ANDROID_LOG_VERBOSE, "Native", "Max textures %d", maxt);

This only outputs 2... could it be possible that I'm going to be allowed only 2 textures? That seems impossible... GL_MAX_TEXTURE_SIZE reports 4096 which is more than enough. I suppose you could lay everything out on a couple of 4096x 4096 images (seems a bit crazy) but anyway... Am I just running into one of things that will be different per phone processor?

View 9 Replies View Related

HTC EVO 4G :: Sprint Corporate Stores Lying To Existing Customers - No Evos

Jun 8, 2010

So I starting calling the corporate sprint stores in my area and I noticed they were all asking if I was an existing (EC) or new customer (NC) before telling me if evo's were available. Turns out they are lying about their evo stock to EC. They will sell you one only if you're a NC. So I called a store, and told them I was a tmobile customer. "We have 5 in stock so if you come in the next 30 minutes you can get one". Then, I told them I wanted to buy the phone outright, full retail, no line activation sprint rep told me they don't have phones in stock for me.

Immediately I called sprint customer service; they called the store. (10 min after original call). Store now says none are available, and there is a waitlist. I'm not the only one. Sprint HTC EVO 4G supplies running low, but could be higher than we think - Android and Me

Try it yourself:
Around Sunnyvale, Ca 5 of 6 stores I called asked if i was an existing customer before answering if they had it in stock. 6 store said none. 2 of 2 stores, told me they had stock, then changed tune when they found out i was an existing customer. I should have just gone to the store, waited for them to present the phone. then reveal I'm an existing customer. If they try to pull it back, then call sprint customer service.

View 1 Replies View Related

Android :: Cannot Find File After Decompressing From Archive / App Directory That Stores It?

Jun 3, 2010

I am using ZipInputStream and BufferedOutputStream to decompress a file from a zip archive in Android 1.6. The code runs without exceptions, but when I check the existance of the file, I can't find it. I am just looking for the filename. Is there an application directory that stores this file? Do I need to specify a directory?

View 1 Replies View Related







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