[android-developers] Assets folder location

2013-12-01 Thread Andrew Mackenzie
In the root, beside res/, src/, etc. Android has methods to access files in this directory from your app at runtime. See AssetManager. Get it from Resources.grtAssets(). -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] adapt a game to android

2013-12-01 Thread toki
Hello, i am developing a game where something happens with some objects in one thread and the situation is painted every 150 ms. Currenty I experimented with painting on a java.awt.Canvas, which works fine. But now I would like to paint in android instead. I am looking for some tips how to

Re: [android-developers] Suggestion for next release of Android Studio

2013-12-01 Thread Larry Meadors
I don't understand what you're saying. Double-clicking a class where? When I double-click on a class in the project view, it opens in the editor with focus. Larry On Sat, Nov 30, 2013 at 7:39 PM, Phil Gibbs javabike...@gmail.com wrote: Double clicking on a class (and everything else) brings

[android-developers] Re: Suggestion for next release of Android Studio

2013-12-01 Thread Nobu Games
You should file a feature request ticket here (if not already there): http://code.google.com/p/android/ On Saturday, November 30, 2013 8:39:11 PM UTC-6, Phil Gibbs wrote: Double clicking on a class (and everything else) brings the class into the edit area but does not bring it into the

[android-developers] Re: adapt a game to android

2013-12-01 Thread RichardC
See the Android Canvas class: http://developer.android.com/reference/android/graphics/Canvas.html And redrawing at approx 7 frames a second (150ms) there should be no problem. To refresh at 30fps or faster a suggest you adapt your your code to use OpenGL ES 2.0. On Sunday, December 1, 2013

[android-developers] I want to make an application can do automated testing.

2013-12-01 Thread 12169
Hi, In android i want to make an application that can do automated testing of android applications. for this my first step is to record the testing steps that i done on the application and after i have the repeat that steps. any suggestion will be appreciated. -- You received this message

[android-developers] Re: I want to make an application can do automated testing.

2013-12-01 Thread RichardC
For your own applications see Android UI Testing: http://developer.android.com/tools/testing/testing_ui.html For other application this would be a great big security hole and is therefore not possible. On Sunday, December 1, 2013 7:36:38 PM UTC, 12169 wrote: Hi, In android i want to make an

Re: [android-developers] I want to make an application can do automated testing.

2013-12-01 Thread Kristopher Micinski
You might want to have a look at this system, which does record and replay for a fairly large set of apps: http://www.androidreran.com/ Kris On Sun, Dec 1, 2013 at 2:36 PM, 12169 ashish.a...@gmail.com wrote: Hi, In android i want to make an application that can do automated testing of

[android-developers] Re: I want to make an application can do automated testing.

2013-12-01 Thread 12169
Hi, i want to do this on other applications. On Sunday, December 1, 2013 12:06:14 PM UTC-8, RichardC wrote: For your own applications see Android UI Testing: http://developer.android.com/tools/testing/testing_ui.html For other application this would be a great big security hole and is

[android-developers] #wzm #bugjourvide

2013-12-01 Thread Kim Damevin
Hello ptit! J'ai compris le prob mais je n'ai pas de solution server side possible, client side a la limite. Exemple: Il y a un event a Chambery qui est a 95km de Thonon le 19/12. Je me connecte avec Evian qui est a 105km de chambery, ma grande ville la plus proche est Thonon donc ca me ramene

Re: [android-developers] #wzm #bugjourvide

2013-12-01 Thread Douglas Drumond
English, please. -- Douglas Drumond *GDG Campinas http://www.gdg-campinas.org google.com/+DouglasDrumond http://google.com/+DouglasDrumond – @douglasdrumond http://twitter.com/douglasdrumond* 2013/12/1 Kim Damevin kdame...@gmail.com Hello ptit! J'ai compris le prob mais je n'ai pas de

[android-developers] Sending control characters through InputConnection

2013-12-01 Thread Saied
Hello, Given an IME and an underlying up connected to it, what's the easiest and themost straightforward way to send a control character (say Ctrl-A which usually does Select All) to the underlaying app. I tried sending sendKeyChar((char) 0x1 ) But only a space character is sent to the

Re: [android-developers] Re: I want to make an application can do automated testing.

2013-12-01 Thread Kristopher Micinski
In general you can't control very much, but sendevent will help... http://ktnr74.blogspot.com/2013/06/emulating-touchscreen-interaction-with.html Kris On Sun, Dec 1, 2013 at 4:47 PM, 12169 ashish.a...@gmail.com wrote: Hi, i want to do this on other applications. On Sunday, December 1,