[android-developers] db.insert inserts only auto incremented ID in database

2012-11-20 Thread Saliha Sajid
I'm not getting why db.insert inserts only ID in database. Rest of the columns remain empty. -- 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

[android-developers] How to import individual projects from Android Source Code

2010-07-14 Thread Sajid
As far as I understand, all the built-in standard apps like (email, music, calendar etc) are built using the same API. So I should be able to import a project like mail / music etc without checking out the full source repository of android. I'v been trying that but I am getting compilation problems

[android-developers] File Reading & Writing Problem

2009-02-06 Thread Sajid Iqbal
I am trying to read & write a text file, what am I doing is 1- Have made a text file raw folder in res (in my project) 2- try to read this file from code, inside an activity, below is the code InputStream inputStram=appContext.getResources().openRawResource(R.raw.TestFile); byte

[android-developers] Re: Receiver to get outgoing phone number

2008-12-16 Thread Sajid
register for "android.intent.action.NEW_OUTGOING_CALL" and you can get the outgoing call number like this. public void onReceive(Context context, Intent intent) { String data1= intent.getStringExtra(Intent.EXTRA_PHONE_NUMBER); } On Dec 16, 12:18 am, bparker wrote: > What

[android-developers] Re: Intercepting outgoing call

2008-11-18 Thread Sajid Iqbal
de ex etc On Fri, Nov 14, 2008 at 7:59 PM, Sajid <[EMAIL PROTECTED]> wrote: > > Hi, > > I want to intercept the outgoing call, I have achieved the following > things > > ->recieved the event of outgoing call and got the dialed number, now > what I want to do, is t

[android-developers] Intercepting outgoing call

2008-11-14 Thread Sajid
Hi, I want to intercept the outgoing call, I have achieved the following things ->recieved the event of outgoing call and got the dialed number, now what I want to do, is to dial a new number or by changing the already dialed number? I still could not be able to do the above thing, anybody has