[android-beginners] Call to activity problem

2009-09-09 Thread kapil.k

i am reading the sms body from

class SmsRx extends Brodcast receiver{/./}

I want to start some activity after receiving sms but as this class is
not activity i am unable to start my new activity.so can you please
tell me what shoul i do so that i can start activity after receiving
the sms.

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



[android-beginners] how to read sms from inbox

2009-09-09 Thread kapil.k

I am useing SDK 1.5.i want to read sms from inbox.i found some code
snippets but those are basically for older sdk .so can you give me
some code example about the reading sms from sms.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] remove apllication from emulator prob

2009-09-03 Thread kapil.k

i want to remove application from emulator
i am useing
adb shell in tool derectory
i got
#
then i used
# cd /data/app
#

here i am not getting any .apk files on emulator?so is the path is not
same or any other way to remove files
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] easy stuff please reply

2009-09-03 Thread kapil.k

hello guys i am writing the data in text file with help of

 fos = new FileOutputStream(file);
   out1 =new OutputStreamWriter(fos);
   out=new DataOutputStream(fos);
   String Dpass = new String ("1008");

   out.writeChars(Dpass);

but in file due to char it is leaving space after each charactor.so
how should i store so the will be no sapce.


also which api should i used to delete containt of the file?

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



[android-beginners] voice call recording

2009-09-01 Thread kapil.k

I know allready there are some post on this topic.Thats why i am
shocked couse  telephony class is protected.n we cant do call
recording.playing audio files on call n lot many stuffs,this is a
really important class.is there any way to access it of this is added
in new version cup cake?

is there any hopes in feature that is going to happen.Come on android
team your image is developer friendly platform.please do something &
reply.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] base 64 conversion

2009-08-31 Thread kapil.k

hello ;
in my application i have one string with many special charactors i
need to convert it to the base64 format.i found api in android.util
but that work for xml.how should i do with string is there any api ?
please let me know its class n syntax.
thank you
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] sdk help

2009-08-30 Thread kapil.k

hello ,
i will sound very basic but i really dont know.where do we see the
android sdk help about its all classes n api n its sample
application.i installed it on xp but i doesnt found any in my android
folder.looking forward to your reply

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



[android-beginners] Re: How to send email?

2009-08-28 Thread kapil.k

Where i can found this example?in my sdk i havent found such exapmle?

On Aug 28, 6:48 pm, Liviu Ungureanu  wrote:
> 2009/8/28 Desu Vinod Kumar 
>
>
>
>
>
> > U can find the source in email client example..
>
> > On Fri, Aug 28, 2009 at 5:24 PM, kapil.k  wrote:
>
> >> Is there any sample code about how to send email in android?i want to
> >> design email application for fix address by modifying it.
>
> > --
> > Regards
> > ---
> > Desu Vinod Kumar
> > vinny.s...@gmail.com
> > 09176147148
>
> > > Hi!
>
> Here you have an example..
>
> final Intent email_intent =  new Intent(android.content.Intent.ACTION_SEND);
>  email_intent.setType("plain/text");
> email_intent.putExtra(android.content.Intent.EXTRA_EMAIL, new
> String[]{item.getEMail()});
> email_intent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Subject");
> email_intent.putExtra(android.content.Intent.EXTRA_TEXT, " ");
>  ShowItemDetailsActivity.this.startActivity(Intent.createChooser(email_inten­t,
> "Send mail..."));- Hide quoted text -
>
> - Show quoted text -
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] How to send email?

2009-08-28 Thread kapil.k

Is there any sample code about how to send email in android?i want to
design email application for fix address by modifying it.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] unexpected error in sms application

2009-08-25 Thread kapil.k

i have trying sms example.in first few times it was running verry well
in eclips.then i tried some modification so its showing error
unexpectedally closed.then i removed that application n imprted pre
one which was running but now that is also not running n showing the
same error.what should i suppose to do?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] android handset in India

2009-08-18 Thread kapil.k

hello all I am from india.does anybody have idea from where can get
android device? I think huge diff in price.does any body useing it or
have we any option of importing unlocked devices?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---