[android-developers] Re: Prefill databases

2010-07-19 Thread Jaap


OK, but where do I need put it in the package?


On Jul 19, 4:07 am, DanH danhi...@ieee.org wrote:
 Again, I say, what's your problem -- do you need to know how to fill
 the database, or how to include it in your app?

 A SQLite database consists of a single file on the PC or phone, and is
 portable between them, so you can use any of a dozen methods to fill
 the database file and then install it with your app.

 On Jul 9, 3:10 pm, Jaap jaap.hait...@gmail.com wrote:

  Hi,

  I have a program that needs a fixed database to do lookups of some
  data. Is there a way to easily fill such a database by just putting
  the data in a file or so

  Thanks

  Jaap

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Prefill databases

2010-07-18 Thread Jaap
Hi the link you provided does not work. Can you provide the right link
please?

Thanks

Jaap

On Jul 10, 11:07 am, vineet ma...@vineetyadav.com wrote:
 See this link..
 it may 
 helphttp://vineetyadav.com/tutorials/11-adding-prefilled-sqlite-database-...

 On Jul 10, 1:10 am, Jaap jaap.hait...@gmail.com wrote:

  Hi,

  I have a program that needs a fixed database to do lookups of some
  data. Is there a way to easily fill such a database by just putting
  the data in a file or so

  Thanks

  Jaap

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Prefill databases

2010-07-09 Thread Jaap
Hi,

I have a program that needs a fixed database to do lookups of some
data. Is there a way to easily fill such a database by just putting
the data in a file or so

Thanks

Jaap

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Intercepting the Android phone dialer

2010-06-30 Thread Jaap
Maybe I did not explain myself well. What I want is somebody to use
the default phone application on Android but when the call button is
pressed my application gets the number and no call is being placed.

Jaap

On Jun 26, 10:30 pm, Jaap jaap.hait...@gmail.com wrote:
 Hi,

 There are some programs to make calls via SIP with android. Nice thing
 is that they work transparently. That is you can use the standard
 android phone dialer but the call goes via SIP.

 How can you use the android dialer to do this?

 Thanks

 Jaap

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Intercepting the Android phone dialer

2010-06-26 Thread Jaap
Hi,

There are some programs to make calls via SIP with android. Nice thing
is that they work transparently. That is you can use the standard
android phone dialer but the call goes via SIP.

How can you use the android dialer to do this?

Thanks

Jaap

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Pick a telephone number

2010-06-20 Thread Jaap
Hi,

In my app I want to have the user selecting a telephone number from
the contacts list. How do I do that.

Selecting a contact is easy:
 Intent intent = new Intent(Intent.ACTION_PICK);
 intent.setType(ContactsContract.Contacts.CONTENT_TYPE);
 startActivityForResult(intent, PICK_CONTACT);

Is there also an easy way to first see the contact list and then see
the telephone numbers of that contact and in the end return the
telephone number to my app that the user selected.

Thanks

Jaap

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en