[android-developers] In ICS Media Store DB whts the file URI to fetch the text document?

2012-01-23 Thread crajesh
Hi All,

In media store DB, we can fetch Video / Audio by using the
corresponding URI,

Audio URI = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI
VideoURI = MediaStore.Video.Media.EXTERNAL_CONTENT_URI

like that any URI is available for fetching the text files/documents?


Thanks
C.Rajesh

-- 
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: Sometimes Receiver Not Receiving Any Broadcast Message

2011-10-04 Thread crajesh
Hi Steven,

Thanks for your reply,

I included the data scheme tag in AndroidManifest.xml

sometime it don't receive any broadcast message, after rebooting the i
can receive broadcast message

thanks
Rajesh

On Oct 4, 10:54 am, Studio LFP studio@gmail.com wrote:
  You can't register for MEDIA_* intents in the AndroidManifest.xml. You
  can only register for them in code, and you will only get the
  onReceive call if you are still running. (There shouldn't be a need to
  get sd card state if you are not running)

 I'm pretty sure this is incorrect.  You can receive media broadcasts via
 intents in the AndroidManifest.xml.

 Rajesh,

 Are you making sure to include the data scheme tag?

 receiver android:name=.MediaReceiver
     intent-filter
         action android:name=android.intent.action.MEDIA_EJECT/
         action android:name=android.intent.action.MEDIA_MOUNTED /
         *data android:scheme=file /*
     /intent-filter
 /receiver

 Steven
 Studio LFPhttp://www.studio-lfp.com

-- 
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] Sometimes Receiver Not Receiving Any Broadcast Message

2011-10-03 Thread crajesh
Hi,

I have create a receiver which receive on mount/unmount state change I
have register it in XML by android.intent.action.MEDIA_MOUNTED and
android.intent.action.MEDIA_EJECT

But sometime it don't receive any broadcast message

How to fix this issue??

Thanks
Rajesh

-- 
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] How can i start a service after installing my apk.

2011-09-23 Thread crajesh
Hi,

How can i start a service after installing application.??

Thanks
C.Rajesh

-- 
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] Invoking the APK from another apk

2011-05-01 Thread crajesh
HI,

I have two apk in /data/app which are a.apk and b.apk, and I want to
invoke b.apk from a.apk... May, i know code for  invoke b.apk from
a.apk

thanks
C.Rajesh



-- 
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] performance issue of an android application

2011-03-28 Thread crajesh
Hi,

  What tools would use to search out a performance issue of an android
application???

Thanks
C.Rajesh

-- 
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: fetch all the miss call

2011-03-16 Thread crajesh

Hi Bastiaan,

Thank you so much for this



On Mar 15, 3:45 pm, Bastiaan bastiaa...@gmail.com wrote:
 You can use the Call Log Content Provider to fetch the missed calls:

 http://malsandroid.blogspot.com/2010/06/accessing-call-logs.htmlhttp://www.devx.com/wireless/Article/41133/1763/page/3

 On 15 mrt, 11:23, crajesh crajesh2...@gmail.com wrote:

  Hi,

    I need to fetch all the miss call, so may i know in which database i
  can fetch the miss call list.

  can any one tell me the corresponding Query for fetching the all the
  miss call

  Thanks
  C.Rajesh

-- 
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] How To End the Call

2011-03-16 Thread crajesh
Hi,

   I need to End call automatically. So can any one guide me how to
End call..

Thanks
C.Rajesh

-- 
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] fetch all the miss call

2011-03-15 Thread crajesh
Hi,

  I need to fetch all the miss call, so may i know in which database i
can fetch the miss call list.

can any one tell me the corresponding Query for fetching the all the
miss call

Thanks
C.Rajesh

-- 
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] call Activity from the BroadcastReceiver.

2011-02-10 Thread crajesh
Hi,

May i know how to call Activity from the BroadcastReceiver.

Plz give any example or link


Thanks
crajesh

-- 
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] Install the Apk

2011-02-07 Thread crajesh
Hi,

 I am new in android. I need to create the shortcut icon for .apk in
my desktop while installing my apk in mobile.

It is possible?
May i know wht the command for that?

Thank you for your help !

Thanks
Rajesh

-- 
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] uses of inten-filter and bindservice

2010-10-05 Thread crajesh
hi

 I am new in android. i want to know wht the uses of inten-filter and
bindservice. please guide me and explain me.

Thanks
C.Rajesh

-- 
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] Get responce from the UDP server

2010-08-26 Thread crajesh
Hi All,

   I am new in Android, I need to get responce from the UDP server
using the Intent method.

Is there a way to get the data using Intent?

Thanks
Remo

-- 
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] Read the data in Intent

2010-08-26 Thread crajesh
Hi all,

   i am new in android how read the data from server using intent

Thanks
Remo

-- 
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: create Hierarchical menu

2010-08-26 Thread crajesh
menu which can be divided into submenu (or)  i can be also considered
as Hierarchical list

Thanks
C.Rajesh

On Aug 25, 2:41 am, TreKing treking...@gmail.com wrote:
 On Tue, Aug 24, 2010 at 12:46 PM, crajesh crajesh2...@gmail.com wrote:
  So will you please guide me how to create the Hierarchical menu

 Could you guide me in understanding what the Hierarchical menu is?

 -
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
 transit tracking app for Android-powered devices

-- 
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] creating Hierarchical menu.

2010-08-24 Thread crajesh
Hi All,

  I am new in android. I want to create Hierarchical menu. So will you
please guide me how to create the Hierarchical menu


Thanks everyone in Advance.
C.Rajesh

-- 
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] create Hierarchical menu

2010-08-24 Thread crajesh
Hi All,

  I am new in android. I want to create Hierarchical menu. So will you
please guide me how to create the Hierarchical menu

Thanks everyone in Advance.
C.Rajesh

-- 
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: Any Interview Question

2010-08-22 Thread crajesh
Hi,
 I don't know what is there in the post which made u to think it's
funny.
But anyway i have experience in android application development. But i
don't have experience in android server side.

I also searched in google for interview questions related to android
server side. But i couldn't get much information.
It would be great if u can help me here by providing any documents
which tells more about android server side concepts(like connecting
database from the server)

Thanks  Regards,
Rajesh

On Aug 21, 11:26 pm, Miguel Morales therevolti...@gmail.com wrote:
 I hope you're joking because this post is funny.
 I don't understand how you can have an interview but don't know how to
 use google for information about Android.  I hope never to use any
 software you write.



 On Sat, Aug 21, 2010 at 7:55 AM, crajesh crajesh2...@gmail.com wrote:
  Hi,

  Can any one send me some basic information about Android. I have a
  interview. I really want to work in Android technology, its a new
  technology for me. so i need some help. Any one send me the interview
  question plz

  My email address is

  crajesh_2...@yahoo.co.in
  crajesh2...@gmail.com

  Thanks
  C.Rajesh

  --
  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

 --http://developingthedream.blogspot.com/,http://diastrofunk.com,http://www.youtube.com/user/revoltingx,
  ~Isaiah 55:8-9

-- 
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] connecting mysql database

2010-08-21 Thread crajesh
Hi All,

  I am new in android. I want to know to connect the mysql database.

Please give your opinion and give also examples on how to use any of
the solutions.

Thanks everyone in Advance.

C.Rajesh

-- 
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] Any Interview Question

2010-08-21 Thread crajesh
Hi,

Can any one send me some basic information about Android. I have a
interview. I really want to work in Android technology, its a new
technology for me. so i need some help. Any one send me the interview
question plz

My email address is

crajesh_2...@yahoo.co.in
crajesh2...@gmail.com

Thanks
C.Rajesh

-- 
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