[android-developers] Permission on apk

2009-05-05 Thread danielececil...@gmail.com
Hi, I've a problem to read on an apk File. I've created my sdcard with command 'mksdcard ...' I execute this code : File tmpdir = new File(tmpdirpath+name); if (!tmpdir.exists()) { boolean b = tmpdir.mkdirs(); } else {

[android-developers] Launch Activity

2009-05-05 Thread danielececil...@gmail.com
Hi, I try to launch an Activity created with : public class MyActivity extends Activity { ... } from a java method. Somebody can help me please --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Launch Activity

2009-05-06 Thread danielececil...@gmail.com
# -- On May 6, 12:19 am, Mark Murphy mmur...@commonsware.com wrote: danielececil...@gmail.com wrote: Hi, I try to launch an Activity created with :         public class MyActivity extends Activity { ... } from a java method. Somebody can help me

[android-developers] PhoneBook

2009-05-15 Thread danielececil...@gmail.com
Hi, I try to recover data from the phonebook to stock them into an ArrayList. I wrote this code to test on phone number data: Begin Code -- Cursor c =

[android-developers] Postal Address from Phonebook

2009-05-18 Thread danielececil...@gmail.com
Hi, I try to find the postal address of a contact witch is saved in the phonebook. I know the name of this contact, but i don't know where i can find his postal address. Somebody can help me please :) --~--~-~--~~~---~--~~ You received this message because you

[android-developers] Wait for activity finishes

2009-05-20 Thread danielececil...@gmail.com
Hi, I have a problem with return value of a method witch launches an Activty. I would like a method witch launches an Activty and witch wait for this Activity being complete before returning a value. I note that , doing nothing special, the calling method achieves its own code before launches

[android-developers] android test

2009-05-28 Thread danielececil...@gmail.com
Hi, I am writting unit tests on my Android project. I would like to test whether a specific dialog window appears when i click on a button. For example, I have : --Begin Code - public class MyDialog extends Dialog {

[android-developers] Re: Instrumentation for Dialog's and alike

2009-05-28 Thread danielececil...@gmail.com
Hi, Do you solve your problem with the dialog window? I try to verify Dialog component too. But I do not find any help. Cecilia On Apr 30, 9:36 pm, Rick richardgc...@gmail.com wrote: I've seen a few posts with no answer. Consider this scenario: I use Android's InstrumentationTestCase to run

[android-developers] Re: Wait for activity finishes

2009-06-02 Thread danielececil...@gmail.com
to handle the onActivityResults instead of the returned value of myFunction. On May 20, 5:30 am, danielececil...@gmail.com danielececil...@gmail.com wrote: Hi, I have a problem with return value of a method witch launches an Activty. I would like a method witch launches an Activty