Gedzis
Gedzis

Reputation: 33

Testing Android App GUI

i am developing andriod app. On GUI development, I have issue how to test if GUI works on different Android phones (i mean with different screen size, density and etc). How i can check if everything is correct?

Upvotes: 1

Views: 544

Answers (4)

Macarse
Macarse

Reputation: 93143

You are asking for the hardest thing to do in Android development :)

  1. Read Supporting Multiple Screens.
  2. If you are targeting motorola devices, here are a bunch of SDK addons for the emulator.
  3. If you need to test a specific device, you can try using perfectomobile.

Upvotes: 2

Kartik Domadiya
Kartik Domadiya

Reputation: 29968

You can test your android app. without using any mobile phone.. Just go through the link(if your app is using flash) here..

Or See another tool

Upvotes: 0

Maaalte
Maaalte

Reputation: 6081

I usually use two steps:

  1. Create a few emulators with different screen-sizes and versions of Android.
  2. After succesfully testing step 1 I hand out my app to some friends with different Android phones and let them test my app.

Upvotes: 1

pableu
pableu

Reputation: 3240

Can't you test that with the emulator?

You'll have to create multiple AVDs ("Android Virtual Devices") with the settings you want for Resolution, Density and so on.

Upvotes: 1

Related Questions