Re: [android-developers] Cursor oddity, only observed on 1.6 emulator

2011-07-12 Thread Paula Gabriela
This is beacuse you probably forgot to close some Cursor object in your project. After you use a cursor, just write: cursor.close(); Uri uri = ContactsContract.Contacts.CONTENT_URI; String[] projection = new String[]

[android-developers] Broadcast to a specific class in another app

2011-05-09 Thread Paula Gabriela
Hello everyone, I have a problem when I try to send a broadcast intent from App1 to App2 and set my component name using *setComponent()* method That is, In my APP2 I have *String myAction = ..; IntentFilter filter = new IntentFilter(); filter.addAction(myAction);

Re: [android-developers] Broadcast to a specific class in another app

2011-05-09 Thread Paula Gabriela
this: *//APP1 Intent intent = new Intent(); intent.setComponent(new ComponentName(pkgApp2, clsApp2)); startActivity(intent);* it works very well. 2011/5/9 Mark Murphy mmur...@commonsware.com On Mon, May 9, 2011 at 9:00 AM, Paula Gabriela paul...@gmail.com wrote: Hello everyone, I have

Re: [android-developers] Broadcast to a specific class in another app

2011-05-09 Thread Paula Gabriela
Ok. Thanks a lot. 2011/5/9 Mark Murphy mmur...@commonsware.com On Mon, May 9, 2011 at 9:42 AM, Paula Gabriela paul...@gmail.com wrote: Well.. I'm sorry if I misunderstood what you said, but I register my broadcast receive in my app2. In my APP2 I have: //APP2 String myAction

Re: [android-developers] Re: Need Help to Develope my first Android Project.

2011-04-01 Thread Paula Gabriela
You were naive with this post. Of course nobody will tell you how to do this, you should do it by yourself. If you don't know how to write a modularized software project you should read something about archtiecture, oop, etc. 2011/4/1 Robert rcope...@gmail.com IS this for a class at your

[android-developers] Reflection And Library Diferrent Classes Definition

2011-03-30 Thread Paula Gabriela
Hello everyone, I'm having a trouble with definition of lybrary. I don't really know if it is a concept problem, or a implementation problem. Let me explain: I have three projects in my eclipse workspace. 1ยบ - It's a library, with one interface. I marked this project as a library in eclipse