[android-developers] Android Kernel

2009-09-17 Thread perumal316
Hi, I have downloaded the Android kernel and done some changes to the kernel config file. After building the output is zImage. I want to test it through the emulator. But when I start the emulator using the new kernel by using this command, ./emulator -avd Android1.5 -kernel path to zImage The

[android-developers] Display TextFile

2010-01-20 Thread perumal316
Hi, Suppose I have a text file in /data folder, is there any way I can display the textfile to user through an app? Thanks In Advance, Perumal -- 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] Re: Display TextFile

2010-01-21 Thread perumal316
blank screen Regards, Perumal On Jan 22, 12:05 am, TreKing treking...@gmail.com wrote: On Wed, Jan 20, 2010 at 8:35 PM, perumal316 perumal...@gmail.com wrote: Suppose I have a text file in /data folder, is there any way I can display the textfile to user through an app? Sure. If you want

[android-developers] Re: Kernel Messages

2010-01-23 Thread perumal316
Meaning I have to use Android NDK? On Jan 14, 1:19 pm, Frank Weiss fewe...@gmail.com wrote: I suppose JNI would be the way to go. On Wed, Jan 13, 2010 at 12:35 AM, perumal316 perumal...@gmail.com wrote: Hi, Any idea how do I show the kernel messages to user? One way is to install

[android-developers] Re: Kernel Messages

2010-01-24 Thread perumal316
Hi, There is this android.util.Log class in Android but it only used for logging but not displaying. Not sure whether there is any other way. Thanks In Advance, Perumal On Jan 23, 8:09 pm, perumal316 perumal...@gmail.com wrote: Meaning I have to use Android NDK? On Jan 14, 1:19 pm, Frank

[android-developers] System Calls

2009-12-17 Thread perumal316
Hi, Is there any way I can write an application which can monitor system calls made by other applications? Thanks in Advance, Perumal -- 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] System Calls in Android

2010-01-05 Thread perumal316
Hi, Is there any way I can find out the system calls invoked by Android for specific tasks? For example, for writing/deleting contacts or writing/deleting SMS what are the Linux system calls invoked by Android for these tasks? I can't find any links explaining on this. Thanks in Advance,

[android-developers] Expose kernel logs to user environment

2010-01-06 Thread perumal316
Hi, I am currently writing a module for Android. In module programming there is only printk but is it possible to show the kernel messages to the users? Meaning the user who will be using the Android phone with the module will be shown the kernel messages. Thanks In Advance, Perumal -- You

[android-developers] Thread

2010-08-04 Thread perumal316
Hi All, I want to write a separate Thread within my application(to do Bluetooth connection). Any idea where I can find any reference for help to write Threads in Android? I searched online but could not find any proper reference. Thanks In Advance, Perumal -- You received this message because

[android-developers] Re: Thread

2010-08-04 Thread perumal316
Thanks Shawn, Actually the first thing I did was to google for it but could not find any proper reference, that's why posted here. Regards. On Aug 4, 4:59 pm, Shawn Brown big.coffee.lo...@gmail.com wrote: I want to write a separate Thread within my application(to do Bluetooth connection).

[android-developers] Patching

2010-08-10 Thread perumal316
Hi All, I am just wondering how does Android do patching? For example how do they push down software patches to solve security vulnerabilities etc? Or it is only system upgrade. Like from 2.1 to 2.1 update 1 to 2.2. So is there is no patches pushed down in the interim period. Thanks In Advance,

[android-developers] Android 2.2-Numeric PIN

2010-08-12 Thread perumal316
Hi All, In Android 2.2 there is an option to lock the screen using numeric PIN. Any idea which API it uses? Because I want to implement the same concept to lock an application. Meaning user have to enter the PIN to open the application. Even if the phone is restarted, the PIN have to be used to

[android-developers] Application Lock

2010-08-13 Thread perumal316
Hi All, I came across an Application in Android Market which locks the use of application. Meaning after locking an application can only unlock it using password. My question is, can this be done for hardware? E.g. Password protect camera for example, so only can unlock it using the same

[android-developers] Re: Application Lock

2010-08-15 Thread perumal316
. -Original Message- From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of perumal316 Sent: Friday, August 13, 2010 1:55 PM To: Android Developers Subject: [android-developers] Application Lock Hi All, I came across an Application in Android

[android-developers] Re: Application Lock

2010-08-16 Thread perumal316
functions? Thanks In Advance, Perumal On Aug 15, 11:09 pm, perumal316 perumal...@gmail.com wrote: Hi Sachin, Sorry I couldn't understand. You mean there is already an inbuilt Android settings function that can do this? I have searched for such a setting but couldn't find any, can I know how

[android-developers] Exiting Application

2010-08-17 Thread perumal316
Hi All, I want my application to always run in the background untill being exited properly. Any idea how to do it? Currently I notice after a while my application closes on it own. Thanks In Advance, Perumal -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Exiting Application

2010-08-17 Thread perumal316
, Perumal On Aug 18, 11:54 am, Mark Murphy mmur...@commonsware.com wrote: On Tue, Aug 17, 2010 at 11:25 PM, perumal316 perumal...@gmail.com wrote: I want my application to always run in the background untill being exited properly. Any idea how to do it? You can't, sorry. Android

[android-developers] Re: Exiting Application

2010-08-17 Thread perumal316
I want to keep running my app in the background, my app will be using the camera resources so that other apps cannot use the camera while the app is running. The camera resources will be released after user exits the app. On Aug 18, 12:14 pm, Frank Weiss fewe...@gmail.com wrote: Would you please

[android-developers] Re: Exiting Application

2010-08-18 Thread perumal316
Hi feiweiss, Yes, that's what I want to do. Exclusive lock on the camera which can be only unlocked by user through a pin. But I realised that by doing a Camera.open() it holds on to the camera resourses and other applications cannot use it but Android releases the camera after a short while and

[android-developers] Resource ID

2010-09-06 Thread perumal316
Hi All, I am using the function decodeResource(Resources res, int id, BitmapFactory.Options opt). I am using it in the following way: BitmapFactory.decodeResource(getResources(), R.drawable.image,opt); My question is instead of using R.drawable.image which is an image in res\drawable folder, I

[android-developers] Re: Resource ID

2010-09-06 Thread perumal316
Thanks for the info! Regards, Perumal On Sep 6, 5:50 pm, Mark Murphy mmur...@commonsware.com wrote: On Mon, Sep 6, 2010 at 5:47 AM, perumal316 perumal...@gmail.com wrote: I am using the function decodeResource(Resources res, int id, BitmapFactory.Options opt). I am using

[android-developers] Google ID

2010-09-08 Thread perumal316
Hi, Is it possible to get the Google ID of the phone? Google ID is the Gmail ID used for setting up the phone. Thanks In Advance, Perumal -- 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] Re: Google ID

2010-09-08 Thread perumal316
Hi Christian, I want to obtain it through code. Is there any way to do so? Thanks and Regards, Perumal On Sep 8, 6:14 pm, Christian Buchner christian.buch...@gmail.com wrote: Is it possible to get the Google ID of the phone? Google ID is the Gmail ID used for setting up the phone. On

[android-developers] SMS number

2010-04-04 Thread perumal316
Hi, Is there any record in Android which keep track of all the numbers to which SMSes are send? Because for the application I am writing I want to display the record if possible. Is there any way I can access and display the numbers SMSes has been send to? Thanks In Advance, Perumal -- You

[android-developers] Holding On to Camera

2010-06-29 Thread perumal316
Hi, Writing an application to invoke the camera can be done but I want to write an application to hold on to the camera resources. Meaning while this application is running, camera cannot be accessed by other applications. Is this possible? The aim is as long as the application is running camera

[android-developers] Re: Holding On to Camera

2010-07-01 Thread perumal316
I wanted to try whether it is possible to lockdown a camera by an application. Is there any other method to lock down the camera? Regards, Perumal On Jul 2, 12:30 am, TreKing treking...@gmail.com wrote: On Tue, Jun 29, 2010 at 6:28 AM, perumal316 perumal...@gmail.com wrote: Meaning while

[android-developers] Calculating Hash Value

2010-07-07 Thread perumal316
Hi All, I want to calculate the hash value of the all the folders in a particular directory. I am able to do it in a java application. Any idea how to do it in Android? Thanks in Advance, Perumal -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: Calculating Hash Value

2010-07-08 Thread perumal316
Hi All, In java I used the following: SHA1CreateDigest Shash = new SHA1CreateDigest(); byte [] tog = Shash.SHA1Encode(test); = test is the string of which I want to create the hash value Any idea how do I do this in Android? Thanks In Advance, Perumal On Jul 7, 4:50 pm, perumal316 perumal

[android-developers] Re: Calculating Hash Value

2010-07-08 Thread perumal316
In java I used the following: SHA1CreateDigest Shash = new SHA1CreateDigest(); byte [] tog = Shash.SHA1Encode(test); = test is the string of which I want to create the hash value Any idea how do I do this in Android? Thanks In Advance, Perumal On Jul 7, 4:50 pm, perumal316 perumal

[android-developers] Monitoring Camera

2010-07-11 Thread perumal316
Hi All, I want to write an application that will write to a log file each time my camera is used. Is there any way I can go about doing it? I tried to used the the camera API example provided in the sdk. But it is running as a separate application. I want my application to log down everytime

[android-developers] Re: Monitoring Camera

2010-07-11 Thread perumal316
mmur...@commonsware.com wrote: On Sun, Jul 11, 2010 at 9:31 PM, perumal316 perumal...@gmail.com wrote: I want to write an application that will write to a log file each time my camera is used. Is there any way I can go about doing it? Write an app that uses the Camera API, and log when that app

[android-developers] Re: Monitoring Camera

2010-07-11 Thread perumal316
Ok thanks for the info! On Jul 12, 9:44 am, Mark Murphy mmur...@commonsware.com wrote: On Sun, Jul 11, 2010 at 9:43 PM, perumal316 perumal...@gmail.com wrote: Yes, I have tried that. But it is only possible to log when that app is used. But I want to log whenever the camera is used. So when

[android-developers] Polling

2010-07-11 Thread perumal316
Hi All, Is it possible to do polling in Android? For example, I want my application to monitor a directory continuously. If there is for example a new folder created in that directory I want to log it down. Is it possible to acheive this by polling? Or is there any other way to do this? Thanks

[android-developers] Re: Polling

2010-07-11 Thread perumal316
...@android.com wrote: To monitor files and directories, you can simply use a FileObserver:http://d.android.com/reference/android/os/FileObserver.html On Sun, Jul 11, 2010 at 8:25 PM, perumal316 perumal...@gmail.com wrote: Hi All, Is it possible to do polling in Android? For example, I want

[android-developers] FileObserver

2010-07-12 Thread perumal316
Hi All, I want to observe the changes made to the filesystem. I am reposting as previously I have used a wrong title to post. I am using FileObserver for this purpose. But I am getting this error when i import android.os.FileObserver: The import conflicts with a type defined in the same file

[android-developers] Re: Polling

2010-07-12 Thread perumal316
Hi All, Thanks for the help. I managed to solve it. The error occurred because my class name was also FileObserver. Regards, Perumal On Jul 13, 5:38 am, TreKing treking...@gmail.com wrote: On Sun, Jul 11, 2010 at 11:05 PM, perumal316 perumal...@gmail.com wrote: The import conflicts

[android-developers] Re: FileObserver

2010-07-12 Thread perumal316
Hi, Thanks for the help. Yes, my class name was also FileObserver. Now managed to resolve it. Regards, Perumal On Jul 12, 6:49 pm, Mark Murphy mmur...@commonsware.com wrote: On Mon, Jul 12, 2010 at 2:31 AM, perumal316 perumal...@gmail.com wrote: I want to observe the changes made

[android-developers] RadioGroup

2010-07-12 Thread perumal316
Hi All, In my application I have a RadioGroup within which has 2 RadioButtons Then I have another 'submit' button. Upon clicking submit button I want to do tasks based on which button is selected in the RadioGroup. I can do this when there is no RadioGroup involved and there are only 2 buttons

[android-developers] Force an Application to be alive

2010-07-13 Thread perumal316
Hi All, I am writing an application to do fileobservation which can be done. Is there any way I can make the application to run in the background without killing it? Unless user restart the phone. Is there any way to do it? Thanks In Advance, Perumal -- You received this message because you

[android-developers] Re: Force an Application to be alive

2010-07-13 Thread perumal316
Ok will try. Thanks. On Jul 13, 3:54 pm, y 00o00o0o0o000o00o0o0o yszhou4t...@gmail.com wrote: I read the reference and come across this. You can try if it works for you. http://developer.android.com/reference/android/Manifest.permission.ht... sincerely yolilla -- You received this message

[android-developers] Mount USB Drive

2010-07-13 Thread perumal316
Hi All, I want my application to automatically mount the phone into USB storage drive if USB cable is connected. Is there code to do it? I tried searching but couldn't find any info on it. Thanks In Advance, Perumal -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: Force an Application to be alive

2010-07-19 Thread perumal316
Ok thanks for the inputs! On Jul 14, 8:21 am, Dianne Hackborn hack...@android.com wrote: Please don't use that.  I didn't realize this got left in the public API...  it should not be. :(  It is very broken for apps to use this; expect it to be turned into a no-op in the future. On Tue, Jul

[android-developers] Re: RadioGroup

2010-07-19 Thread perumal316
On Tue, Jul 13, 2010 at 9:01 PM, anil kukreti success.anil...@gmail.comwrote: use the setChecked(boolean) method for particular radiobutton which you want to get selected on clicking submit button On Tue, Jul 13, 2010 at 9:48 AM, perumal316 perumal...@gmail.com wrote: Hi All, In my

[android-developers] Bluetooth Server and Client

2010-07-19 Thread perumal316
Hi All, I have used code snippet from http://www.anddev.org/ post49564.html#p49564 to send over a string of text over Bluetooth. Both my server and client are Android phones running on v2.1 The code snippet in the website above is for bluetooth client and I have hard code my server mac address

[android-developers] Bluetooth and client

2010-07-19 Thread perumal316
Hi All, I have used code snippet from http://www.anddev.org/post49564.html#p49564; to send over a string of text over Bluetooth. Both my server and client are Android phones running on v2.1 The code snippet in the website above is for bluetooth client and I have hard code my server mac

[android-developers] J2ME

2010-07-22 Thread perumal316
Hi All, Is there any way to convert J2ME applications into Android applications? The only way I have come across is using microemulator which if I used to convert J2ME app that uses Camera or Bluetooth APIs doesn't work. Is there any other way? Regards, Perumal -- You received this message

[android-developers] Sending a String over Bluetooth

2010-07-27 Thread perumal316
Hi All, I am trying to establish a server (J2SE) and client (Android). The client will send a string over to the server over Bluetooth. For Android the code snippet is as below: BluetoothAdapter adapter = null; adapter = BluetoothAdapter.getDefaultAdapter(); BluetoothDevice device =

[android-developers] Re: Sending a String over Bluetooth

2010-07-27 Thread perumal316
, perumal316 perumal...@gmail.com wrote: Hi All, I am trying to establish a server (J2SE) and client (Android). The client will send a string over to the server over Bluetooth. For Android the code snippet is as below:   BluetoothAdapter adapter = null;   adapter

[android-developers] Re: Sending a String over Bluetooth

2010-07-27 Thread perumal316
? Regards, Perumal On Jul 28, 9:46 am, perumal316 perumal...@gmail.com wrote: Hi, Is the UUID could be the problem? Because for Android the UUID have to have dashes. Like 1101--8000- but in J2SE the UUID could not have dashes like 11018000. Is this causing the problem

[android-developers] UUID

2010-07-28 Thread perumal316
Hi All, I am writing an Bluetooth Server and Client application. My Bluetooth server will be J2SE application and client will be Android application. While trying to set up the communication using the UUID, I have noticed that in J2SE the UUID has to be in the following format in order to work:

[android-developers] Re: Sending a String over Bluetooth

2010-08-02 Thread perumal316
used the code for J2SE server from the following website: http://www.jsr82.com/jsr-82-sample-spp-server-and-client/ Thanks In Advance, Perumal On Jul 28, 10:59 am, perumal316 perumal...@gmail.com wrote: Just to add on. In my PC I am using Bluecove. Is it the correct one? So far after searching

[android-developers] Re: Sending a String over Bluetooth

2010-08-03 Thread perumal316
); It should be the same but in J2SE I am getting java.lang.IllegalArgumentException error. Any idea how to solve it? Thanks In Advance, Perumal On Aug 3, 11:29 am, perumal316 perumal...@gmail.com wrote: Hi, In android I used UUID from java.util and in j2SE I used UUID from javax.bluetooth

[android-developers] Sending image to ftp server

2010-09-12 Thread perumal316
Hi All, I am writing a camera application. I want to send the images to a ftp server instead of saving into the sdcard. Can it be done? I believe can specify the uri of the ftp server like ftp://19., and send the image there. But not sure how to do it? Is there any intent to do so? Thanks

[android-developers] Autofill a website

2010-09-13 Thread perumal316
Hi All, I am writing an application which I want to use to autofill. Any idea how to autofill in a field in the webpage? For example will load the gmail page and the username and password will be auto filled in. Thanks In Advance, Perumal -- You received this message because you are

[android-developers] Accessing XML Based Web Service

2010-09-13 Thread perumal316
Hi All, A xml based web servcie will be exposing a method for me to upload an image. I am writing an android app to access this web service (this web service will have an address which i will hardcode into the app) and upload the image which will be in sdcard automatically. Is it feasible in

[android-developers] Uploading file through HTTP Post

2010-09-15 Thread perumal316
Hi All, I am writing an application to upload a file from Android phone to a web server. I have tried the example from: http://www.anddev.org/novice-tutorials-f8/doing-http-post-with-android-t492.html But it will only work for SDK 1.0 (why? Not Sure?). Can this be done for Android 2.1? Or is

[android-developers] Re: Uploading file through HTTP Post

2010-09-16 Thread perumal316
 am, perumal316 perumal...@gmail.com wrote: Hi All, I am writing an application to upload a file from Android phone to a web server. I have tried the example from: http://www.anddev.org/novice-tutorials-f8/doing-http-post-with-androi... But it will only work for SDK 1.0 (why

[android-developers] Re: Uploading file through HTTP Post

2010-09-16 Thread perumal316
Hi, Managed to get it working already. Thanks for the info. Regards. On Sep 16, 7:39 pm, Yahel kaye...@gmail.com wrote: See this page.. http://rapidandroid.org/wiki/HttpUpload As I have mentioned this is only possible for SDK 1.0. In SDK 2.1 That is exactly what I'm doing in my app and it

[android-developers] Converting Bitmap to ASCII

2010-09-17 Thread perumal316
Hi All, I have a picture taken using the phone's camera and in bitmap format. I want to send it over HTTP usinf Http post in ASCII. Any idea how to do it? Thanks In Advance, Perumal -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] BroadcastReceiver

2010-09-21 Thread perumal316
Hi All, I have written an application to read all incoming SMS and if the SMS contains certain string, I will also send a copy of the message to my another phone for backup purposes. I used the reference from the following website:

[android-developers] Re: How to access contact and account database

2010-09-22 Thread perumal316
Hi, I am also trying the same thing but couldn't do it. You managed to it? I can't find the location of databases.db Regards, Perumal On Sep 21, 2:08 pm, adhavan jeyachandran jadha...@gmail.com wrote: hi,  how can i access the contact and account manager with the help of sqlite3 code? can u

[android-developers] Re: BroadcastReceiver

2010-09-23 Thread perumal316
=android.permission.SEND_SMS / uses-permission android:name=android.permission.RECEIVE_SMS / On Sep 22, 8:37 am, perumal316 perumal...@gmail.com wrote: Hi All, I have written an application to read all incoming SMS and if the SMS contains certain string, I will also send a copy of the message to my

[android-developers] Delete SMS

2010-09-24 Thread perumal316
Hi All, I am writing my own SMS application that will display a toast of my message once it arrive. Now is it possible to delete the message after the display of the toast, so that it will not go into the native SMS application? Thanks In Advance, Perumal -- You received this message because

[android-developers] Re: Delete SMS

2010-09-28 Thread perumal316
In my app I have managed to display all incoming SMSes as Toasts by using code snippets from www.anddev.org. But now how do i delete the SMSes after which? Thanks In Advance, Perumal On Sep 24, 3:52 pm, perumal316 perumal...@gmail.com wrote: Hi All, I am writing my own SMS application

[android-developers] Autofill in local webview

2010-10-11 Thread perumal316
Hi All, I have written an application to load a webpage using a local webview. In the app I have also included some buttons. The idea is in the loaded webpage need to insert some data in their fields. Eg. In Gmail, need to insert username. So when the user clicks on the button it will autofill

[android-developers] Write data into SDCard while mounted

2010-10-12 Thread perumal316
Hi All, Is it possible to mount/unmount the SDCard through an Android application? I am writing my own desktop application which needs to to pass some data into the Android phone which will be used by an Android application and at the same time copy some data from the phone into the desktop

[android-developers] Re: Write data into SDCard while mounted

2010-10-12 Thread perumal316
 pm, Alessandro Pellizzari a...@amiran.it wrote: Il Tue, 12 Oct 2010 07:08:55 -0700, perumal316 ha scritto: Is it possible to mount/unmount the SDCard through an Android application? No. Bye. -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: Write data into SDCard while mounted

2010-10-12 Thread perumal316
. Is it possible to mount programmatically? Thanks and Regards, Perumal On Oct 13, 8:58 am, Mark Murphy mmur...@commonsware.com wrote: On Tue, Oct 12, 2010 at 8:56 PM, perumal316 perumal...@gmail.com wrote: Thanks for the reply. So is there any other method to pass some data into the Android phone from

[android-developers] Web Server

2010-12-22 Thread perumal316
Hi All, Is it possible to host a web server within an Android phone itself? Similar to Apache. I want to access the web server from the mobile browser itself. Couldn't find any reference online. Is this possible? Thanks In Advance, Perumal -- You received this message because you are

[android-developers] Re: Web Server

2010-12-23 Thread perumal316
address in most (if not all) cases. On Wed, Dec 22, 2010 at 8:46 AM, perumal316 perumal...@gmail.com wrote: Hi All, Is it possible to host a web server within an Android phone itself? Similar to Apache. I want to access the web server from the mobile browser itself. Couldn't find

[android-developers] Java Applet and JAR in Android

2011-01-05 Thread perumal316
Hi All, Does Android supports JAR? There is a J2ME Runner app and in HTC phones there is a default Java application that can be used to run JAR. But when I tried only some functionalities from a JAR is available when I run the JAR file. Similarily when I go to websites that runs Java Applets,

[android-developers] View HTML in Android browser

2011-01-10 Thread perumal316
Hi All, I want to open saved HTML pages in default Android browser. But currently when I open the HTML, it is only showing me the option to either open in HTML viewer not the browser. How do I make it to open in Android browser? Thanks and Regards, Perumal -- You received this message because

[android-developers] Re: View HTML in Android browser

2011-01-10 Thread perumal316
guessing you'd say myIntent.setDataAndType(myUri, text/plain); On Jan 10, 8:18 am, perumal316 perumal...@gmail.com wrote: Hi All, I want to open saved HTML pages in default Android browser. But currently when I open the HTML, it is only showing me the option to either open in HTML viewer

[android-developers] Registering WebView as HTML Viewer

2011-01-10 Thread perumal316
Hi All, My WebView application loads a html file and display it. Now how do I register it as a default HTML Reader in the Android system? Meaning for example now if I click on an html attachment in email it shows Complete Action using, then lists the HTML Readers in the Android system. How do I

[android-developers] Re: Can Android 2.X connect to 3G and Wifi data networks simultaneously?

2010-10-17 Thread perumal316
I am just wondering. Is it possible to make all data connection to a particular network only? Meaning even if 3G will be available it will only connect to a particular network for all data related processing. Regards, Perumal On Oct 15, 9:34 pm, Jens dunkingbikk...@gmail.com wrote: Afaik -

[android-developers] Re: Can Android 2.X connect to 3G and Wifi data networks simultaneously?

2010-10-17 Thread perumal316
can take the phone in hand and run towards the nearest WiFi hotspot. -- Kostya 17.10.2010 17:36, perumal316 пишет: I am just wondering. Is it possible to make all data connection to a particular network only? Meaning even if 3G will be available it will only connect to a particular

[android-developers] Re: Can Android 2.X connect to 3G and Wifi data networks simultaneously?

2010-10-18 Thread perumal316
? Meaning if I am going to send a MMS and am connected to my preferred wifi using my app, can my app prevent it from not switching to the 3G network? Thanks and Regards, Perumal On Oct 18, 7:05 pm, Kostya Vasilyev kmans...@gmail.com wrote:   18.10.2010 4:54, perumal316 пишет: Hi Kostya, Yes, I am

[android-developers] Re: Can Android 2.X connect to 3G and Wifi data networks simultaneously?

2010-10-19 Thread perumal316
all applications goes through that. Don't know the answer to your MMS quesiton. -- Kostya 18.10.2010 15:31, perumal316 пишет: Hi Kostya, I meant if I am connected to wifi, how to make sure other apps requiring network access will only connect to the wifi I am connected to and do

[android-developers] Mount as USB drive

2010-10-25 Thread perumal316
Hi All, A general question. Is there any difference in the way the USB drive is mounted in Android as compared to other mobile operating systems? Regards, Perumal -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: Mount as USB drive

2010-10-25 Thread perumal316
what's the issue? Thanks In Advance, Perumal On Oct 26, 4:27 am, FrankG frankgru...@googlemail.com wrote: Sorry .. but did you mean with usb drive is mounted  ? You mean when you mount the sdcard and make them available as mass storage device via usb ? On 25 Okt., 11:37, perumal316 perumal

[android-developers] Auto-Fill Field

2010-11-04 Thread perumal316
Hi All, I am creating my own app which will load a website upon starting. Now I want to auto-fill the fields that will appear on the website. Is this possible? How to I call the field through my app to fill up with pre-determined data? Thanks In Advance, Perumal -- You received this message

[android-developers] Lock Screen

2010-11-04 Thread perumal316
Hi All, I found this site containing code snippets on enabling/disabling phone lock. http://smartandroidians.blogspot.com/2010/03/enabling-and-disabling-lock-screen-in.html Is it possible to enable outgoing calls from the lock screen in Android? Now only emergency calls are allowed from the

[android-developers] Re: Auto-Fill Field

2010-11-05 Thread perumal316
JavaScript code. Application code needs to register an object with WebView, which is then accessible from JavaScript. -- Kostya Vasilyev --http://kmansoft.wordpress.com 04.11.2010 17:27 ÐÏÌØÚÏ×ÁÔÅÌØ perumal316 perumal...@gmail.com ÎÁÐÉÓÁÌ: Hi All, I am creating my own app which will load

[android-developers] Java Midlet

2010-06-20 Thread perumal316
Hi, I have my own java midlets which I want to try to run in Android phone itself. I have tried using Midlet runner available in Market (by netmite) but it only allows me to browse through available java midlets and install from a website. I want a runner which i want to use to test my own

[android-developers] Re: Java Midlet

2010-06-22 Thread perumal316
Hi, Is there any kind of emulator available which I can install in my android phone to run the java midlets? Regards, Perumal On Jun 20, 8:02 pm, Robert Kochem rob...@mailueberfall.de wrote: perumal316 schrieb: I have my own java midlets which I want to try to run in Android phone itself

[android-developers] HTML5 Hardware Access

2011-02-13 Thread perumal316
Hi All, Is it now possible to access Android's Hardware APIs through the Webkit Browser by HTML5? For example I start up the Android Browser and access a website which will requires file upload and camera API. Can this be done? There are some frameworks available, like Titanium and PhoneGap,

[android-developers] Camera Access through WebView

2011-02-16 Thread perumal316
Hi All, Is it possible to invoke the camera through a WebView instance? Can HTML5 be used? I want to have a Android Web App which can access the Camera Hardware in the Android phone. Can this be done? Regards, Perumal -- You received this message because you are subscribed to the Google

[android-developers] Display PIDs

2010-03-23 Thread perumal316
Hi All, Is there any way to display all the process IDs to a user? I think to display the current ID can use the following code: int myProcessID = Process.myPid(); But how do I display all process IDs? Thanks In Advance, Perumal -- You received this message because you are subscribed to the

[android-developers] Display Process IDs

2010-03-23 Thread perumal316
Hi All, Is there any way to display all the process IDs to a user? I think to display the current ID can use the following code: int myProcessID = Process.myPid(); But how do I display all process IDs? Thanks In Advance, Perumal -- You received this message because you are subscribed to the

[android-developers] Re: Display Process IDs

2010-03-23 Thread perumal316
+Process Name+rti.processName ); } Thanks Jaya Diaspark,Inc.(www.diaspark.com) On Mar 23, 2:21 pm, perumal316 perumal...@gmail.com wrote: Hi All, Is there any way to display all the process IDs to a user? I think to display the current ID can use the following code: int myProcessID

[android-developers] Re: Display Process IDs

2010-03-23 Thread perumal316
Hi, Is it possible to list down the names of all the apps that have been installed ? So that I can list down all the names of the apps and not only the PIDs. Thanks In Advance, Perumal On Mar 23, 5:45 pm, perumal316 perumal...@gmail.com wrote: Hi Jaya, Thanks for the help. Managed to get

[android-developers] Re: Display Process IDs

2010-03-23 Thread perumal316
jaya.hoondl...@gmail.com wrote: Do you need anything like file browser? If that is the case you can specify a particular directory like data or sdcard  and get it contents.. Let me know. Jaya Diaspark,Inc.(www.diaspark.com) On Mar 23, 3:22 pm, perumal316 perumal...@gmail.com wrote: Hi

[android-developers] Displaying Installed Packages name

2010-03-23 Thread perumal316
Hi, I want to display all the installed packages to user. Below is the code snippet I used but not sure why it is not working. int flags=0; PackageManager pack = null; ListPackageInfo packInfo= pack.getInstalledPackages(flags); CharSequence[] items = new

[android-developers] Re: Displaying Installed Packages name

2010-03-23 Thread perumal316
package name. Thanks In Advance, Perumal On Mar 24, 10:36 am, murali raju manutd...@gmail.com wrote: PackageManager pack = getPackageManager(); On Wed, Mar 24, 2010 at 7:32 AM, perumal316 perumal...@gmail.com wrote: Hi, I want to display all the installed packages to user. Below is the code

[android-developers] Re: Displaying Installed Packages name

2010-03-24 Thread perumal316
activity? Regards, Perumal On Mar 24, 10:45 am, perumal316 perumal...@gmail.com wrote: Thanks Murali, It is working now. But it is displaying a whole chunk of data. I want to display just the Activity Class and package name. Any idea how to do it? Am I correct to use getInstalledPackages

[android-developers] Starting Activity by package Name

2010-03-25 Thread perumal316
Hi All, I have the code to get the list of packages installed in phone. I have represented the list in the form of Array List, below is the code snippet. But upon clicking in the package name I want to start that application, but how do I get the respective class name and package name to run?

[android-developers] Loading Kernel Module through Application

2010-03-25 Thread perumal316
Hi All, I am having an Android Developer Phone. Is it possible for me to load my kernel module in the phone itself? I tried it in terminal emulator but cannot be done. I want the module to load itself when user starts my application. Is it possible? I read that in Android each application is

[android-developers] Re: Kernel Messages

2010-03-28 Thread perumal316
) and inputstream to display the kernel messages. I couldn't get it done. Thanks In Advance, Perumal On Feb 6, 2:12 pm, biAji biaji...@gmail.com wrote:  hi,perumal316,   Do you get the idea how to do that?  I also want to get some kernel message which could be output by 'dmesg'. But the only way I can

[android-developers] Delay before starting

2010-03-30 Thread perumal316
Hi All, I am writing a application which will write to a file. Now I want to show the contents of the file but How do I delay the show function so that there is enough time for the writing to be done before continuing? Thanks In Advance, Perumal -- You received this message because you are

[android-developers] Creating a textfile and writing to it

2010-03-30 Thread perumal316
Hi All, I am writing an application that will create a textfile in the /sdcard or /data directory and write messages to the textfile.Each time I want to append the messages and not overwrite the file. I used the following code: public void writeAlert(String message){ FileWriter f;

  1   2   >