[android-developers] Launching apps on device remotely from wap/webpages

2011-06-20 Thread Raghavendra K Naik
Hi All,

I just wanted to know whether it is really possible to launch the app on
android phone remotely from wap/web pages ?
Your help is greatly appreciated.
Thanks in advance

Regards,
Raghu

-- 
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: Regarding Tv out in Android

2010-02-03 Thread raghavendra k
Hi,
Is this possible in Android?
Can anyone help me? I need it.

Thanks  Regards,
Raghavendra K.

On Feb 2, 2:53 pm, Dilip Dilip dileep2m...@gmail.com wrote:
 Hi All,
   Is there any TV out feature in Android. Is anyone working on it ?

 Thanks and Regards,
  Dileep

-- 
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: RssFeed Update

2010-02-03 Thread raghavendra k
Hi,

Have you used partial wake lock? I got the similar problem in my
app. I fixed it by using wake lock. Following is my code snippet. May
be this will help you.


PowerManager.WakeLock wl;
try {
PowerManager pm = (PowerManager) context

.getSystemService(Context.POWER_SERVICE);
wl = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, 
Nyros);
if (wl != null)
wl.acquire();
//do your stuff here

} catch (Exception ex) {

} finally {
if (wl != null)
wl.release();

}

Thanks  Regards,
Raghavendra K.

-- 
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: sending around 1000 messages in batch using SMS API

2010-01-17 Thread raghavendra k

Hi Hasanat,

 I am using GSM modem for this requirement and it is working
fine. My modem capacity is 8-10 mesgs/min.

 I am not aware of G1 capacity of messaging. I suggest you to
use GSM modem.

With Regards,
Raghavendra K,
Nyros Technologies.
-- 
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: API expansion

2009-11-30 Thread raghavendra k


On Nov 27, 12:17 pm, Sasikumar.S sasikumar.it1...@gmail.com wrote:
 Hi,

 can any one tell the expansion of API?...

 --
 Thanks  Regards
 Sasikumar.S

Hi,

 Application Programming Interface. Further reference go through
wikipedia

http://en.wikipedia.org/wiki/Application_programming_interface

-- 
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: Closing more than one activity in the activity stack

2009-11-10 Thread raghavendra k
Hi Simz,

  Here is the code to navigate back to the home screen and it will
closes all running Activities. May this helps you.

Intent myIntent = new Intent(YourCurrentActivity.this,
YourHomeScreenActivity.class);
myIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(myIntent);


Bye

-- 
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: disable GPS

2009-11-10 Thread raghavendra k
Hi Nemat,

  AFIK there is no way Enable/Disable GPS programatically. We can
only do is show the user location settings screen directly. Here is
the code..

   startActivity(new Intent
(android.settings.LOCATION_SOURCE_SETTINGS));


   Bye...

-- 
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: How to know when an ougoing call has been answered

2009-11-09 Thread raghavendra k

On Nov 9, 5:01 pm, S Rama Krishna rk.sangubo...@gmail.com wrote:
 Hi all,
 I'm trying to develop an application in Android whose functionality is
 to disconnect all outgoing calls and dial a modified number. My
 problem is I need to send the actual dialed number to the modified
 dialed number as DTMF tones, once after the call has been answered by
 the modified number. How to get the status of the answered call ?
 Right now I'm using telephony that gives CALL_STATE_OFFHOOK (dialing /
 active / hold) states. I need to differentiate between these states.
 Any help will be greatly appreciated.

Hi Boss,
  I think there is no facility in Android SDK. That's why you
have not get any responses

   Is there anyone know the solution?...
   Plz Help

-- 
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 run GPS based application (WikiTude) in Android SDK Emulator?

2009-09-25 Thread raghavendra k

Hi All,

Currently I am writing an Android application which uses 
WikiTude
API. I installed the WikiTude browser application in the Android SDK
emulator from Android Market (To get Android Market in emulator I
followed this link 
http://forum.xda-developers.com/archive/index.php/t-529170.html).

When I run the WikiTude browser application in emulator it asks 
me
to set location settings. I enabled “Enable GPS satellites” option 
run the application, again it make an alert for location settings. I
am not able to run this application. Please help me.

Can anyone tell me is it possible to run GPS based application 
in
Android Emulator? Or not?

  If it is, Is there any work around to run
GPS based application in emulator?

   Any help will be greatly appreciated…

   Thanks in Advance……..
Raghavendra K

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