[android-developers] How to hide apps in the launcher?

2012-07-29 Thread perumal316
Hi All, In some of the launchers, there is an option to hide apps from the launcher. Any idea how this can be done? I want to hide other apps while my apps is running. Is this possible? Is there any other method to do this? Thanks In Advance, Perumal -- You received this message because

[android-developers] Accessing Front and Back Camera at the same time

2012-05-20 Thread perumal316
Hi All, I want to access the front and back camera at the same time. Is this possible? From what I tested, this could not be done. It crashes if an application is already accessing the back camera and another app is trying to access the front camera. But what I don't understand is why is

[android-developers] Switch Camera in Android

2012-04-18 Thread perumal316
Hi All, I am following the sample available at: http://developer.android.com/guide/topics/media/camera.html for developing an camera application. This app shows a camera preview and a button and when user clicks on the button picture is taken and saved and camera preview is shown again. But

Re: [android-developers] How to auto start capturing of picture using native camera?

2012-04-18 Thread perumal316
, but the app crashes. Thanks In Advance, Perumal On Thursday, April 12, 2012 11:04:01 PM UTC+8, TreKing wrote: On Thu, Apr 12, 2012 at 1:22 AM, perumal316 perumal...@gmail.com wrote: Can this be done? After starting the camera, how do I initiate this? So that user need not click anything to start

[android-developers] How to reduce size of JPEG Image in Android

2012-04-16 Thread perumal316
Hi All, In my application, I am invoking the camera application and taking a picture and saving it in a particular directory (E.g. /sdcard etc) The picture is saved as a JPEG image. How do I reduce the size of the image? Is there any available image encoder or compression available? I came

[android-developers] Saving JPEG images as a Video in Android

2012-04-16 Thread perumal316
Hi All, Supposedly, using my application I take a few images which will be saved at a particular directory and saved as JPEGs. IS it possible to pack these images together? Like into a video or tar or zip? So that I can send send these images to a backend (E.g. web server). Is this possible?

[android-developers] How to auto start capturing of picture using native camera?

2012-04-12 Thread perumal316
Hi All, Upon starting my Android app, I want to auto start the native camera (can be done using intents) and start taking pictures automatically for every few seconds. Can this be done? After starting the camera, how do I initiate this? So that user need not click anything to start the photo

[android-developers] I can see created text file using adb shell but not in PC when mounted?

2012-03-14 Thread perumal316
Hi All, In my application, I will be creating a log file (text file) in the /sdcard of the device. Using adb shell, if I navigate to the /sdcard directory, I could see the created text file and by doing a cat I could read the contents But if I mount the device and navigate to the drive,

[android-developers] How to make sure SMS is sent in Android

2012-03-13 Thread perumal316
Hi All, In my application there will be a notification sms send upon an action. Now how do I make sure that the SMS will be sent? For example, if there is no network or sim card removeed, how do I ensure that the sms will be sent once there is a network available at a later time? Is it

Re: [android-developers] How to disable the installation of device administrator application?

2012-03-10 Thread perumal316
this is feasible? Can this be done? Thanks and Regards, Perumal On Friday, March 9, 2012 9:18:09 PM UTC+8, Mark Murphy (a Commons Guy) wrote: On Fri, Mar 9, 2012 at 5:45 AM, perumal316 perumal...@gmail.com wrote: Is there any way this can be prevented? Like a password is required to disable

[android-developers] How to disable the installation of device administrator application?

2012-03-09 Thread perumal316
Hi All, We can create device administrator application which supposedly have escalated privileges to enforce certain policies like password quality, device encryption etc. See: http://developer.android.com/guide/topics/admin/device-admin.html But for example the device is provisioned the

[android-developers] USB Webcam

2012-02-28 Thread perumal316
Hi All, Is it possible to plug in a USB Webcam to an Android tablet that has USB host? I tried and nothing happens. If I plug in a thumbdrive, the contents can be viewed using File Manager, but nothing happens for USB Webcams, could be due to lack of drivers? Has anyone got it to work? How

[android-developers] Re: USB Webcam

2012-02-28 Thread perumal316
think it won't support any cam in emulator . i also tried in lap. it didn't work. On Tue, Feb 28, 2012 at 1:57 PM, perumal316 perumal...@gmail.com wrote: Hi All, Is it possible to plug in a USB Webcam to an Android tablet that has USB host? I tried and nothing happens. If I plug

Re: [android-developers] Re: USB Webcam

2012-02-28 Thread perumal316
the v4l2 apis and convert them into the yuv format and then use the Android UI framework to display them.basically on canvas ectending surface holder just like camera. Rgds, Saurabh ..pain is temporary.quitting lasts forever.. On Wed, Feb 29, 2012 at 7:07 AM, perumal316 perumal

[android-developers] AutoFocus for Android 4.0

2012-01-26 Thread perumal316
Hi All, I have an camera app done for Android 2.3 which basically starts the CameraPreview class and draws a rectangle over the preview and does autofocus within the preview. It works without any issues in Nexus S running on Android 2.3. But when I run this app on Galaxy Nexus running on Android

[android-developers] Re: 3G for GPS Location

2011-12-20 Thread perumal316
geocode. Thus, you have Lat/Lon values, you don't know the street and suburb name On Tue, Dec 20, 2011 at 2:09 PM, Kristopher Micinski krismicin...@gmail.com wrote: On Mon, Dec 19, 2011 at 10:01 PM, perumal316 perumal...@gmail.com wrote: Hi All, I like to clarify, is 3G

[android-developers] GeoTagging Video

2011-12-20 Thread perumal316
Hi All, In Android it is possible to add geolocation (lat and long) information to a picture. Under Camera settings, there is an option for it. But for videos this is missing. Is there any other way to add geolocation to video files? Is it possible to use the ExifInterface class's setAttribute

[android-developers] 3G for GPS Location

2011-12-19 Thread perumal316
Hi All, I like to clarify, is 3G connection needed to get the GPS location? Also currently it is possible to geotag pictures taken through the native camera under settings. But I could not find such a setting for videos. Is geotagging for videos supported in Android? Thanks In Advance, Perumal

[android-developers] Duplicate Media Files

2011-10-09 Thread perumal316
Hi All, I am using the below mentioned intent to start the native camera app for taking picture. Intent intent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE); intent.putExtra(MediaStore.EXTRA_OUTPUT, outputFileUri); startActivityForResult(intent, 1); Now the issue is, the

[android-developers] ACTION_IMAGE_CAPTURE ACTION_VIDEO_CAPTURE

2011-10-07 Thread perumal316
Hi All, In my application, I am using android.provider.MediaStore.ACTION_IMAGE_CAPTURE ACTION_VIDEO_CAPTURE intents to take pictures and videos which will then be send over to the backend. How do I retrieve the default pathname of the intents? One way is to use

[android-developers] Re: Android native browser can't access https sites

2011-09-17 Thread perumal316
Hi Murphy, How about installing the root cert into the phone's credential storage? Will the webpage could be loaded then? Thanks and Regards, Perumal On Sep 16, 10:52 am, Mark Murphy mmur...@commonsware.com wrote: On Fri, Sep 16, 2011 at 10:47 AM, perumal316 perumal...@gmail.com wrote: Just

[android-developers] Android native browser can't access https sites

2011-09-16 Thread perumal316
Hi, I have noticed that for certain https websites, the native browser could not load them and just displays a blank white page. However, this is not an issue with Firefox Android application. Is it a known issue? Is there any workarounds? I tried in an Android 2.3.3 device. Thanks In

[android-developers] Re: Android native browser can't access https sites

2011-09-16 Thread perumal316
Hi Murphy, Yes, the page can be loaded in Firefox. Just wondering, is there any way to include root certs in the Native browser? Thanks In Advance, Perumal On Sep 16, 7:56 pm, Mark Murphy mmur...@commonsware.com wrote: On Fri, Sep 16, 2011 at 2:53 AM, perumal316 perumal...@gmail.com wrote

[android-developers] Picture and video is rotated after HTTPPost

2011-09-09 Thread perumal316
Hi All, I am using the necessary intents (ACTION_IMAGE_CAPTURE etc) to take picture and video which I used HTTPPost to send to a backend server (running java servlet). One thing i noticed is that after the image and video are sent, over at the server side it is rotated 90 degrees clockwise. Is

[android-developers] Re: App Crash during HTTP Post

2011-08-18 Thread perumal316
encountered this before? Thanks In Advance, Perumal On Aug 17, 7:04 pm, Mark Murphy mmur...@commonsware.com wrote: On Wed, Aug 17, 2011 at 7:00 AM, perumal316 perumal...@gmail.com wrote: I noticed that during HTTP Post of files to a backend server if the connection is not established (no reception

[android-developers] Image is saved twice

2011-08-18 Thread perumal316
Hi All, I am using the following intent: Intent i = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE); i.putExtra(android.provider.MediaStore.EXTRA_OUTPUT, uri); Basically i am using ACTION_IMAGE_CAPTURE intent to invoke the camera and save the taken image into the specified uri. It

[android-developers] Re: App Crash during HTTP Post

2011-08-18 Thread perumal316
= client.execute(post); Not sure whether this way of doing the HTTP Post is causing a crash when the file size is too big. Thanks and Regards, Perumal On Aug 18, 6:22 pm, Mark Murphy mmur...@commonsware.com wrote: On Thu, Aug 18, 2011 at 2:30 AM, perumal316 perumal...@gmail.com wrote: I checked

[android-developers] App Crash during HTTP Post

2011-08-17 Thread perumal316
Hi All, I noticed that during HTTP Post of files to a backend server if the connection is not established (no reception) or the file size is too big (10MB) my application crashes. Is there any way to solve this issue? How do I handle for such errors? Thanks In Advance, Perumal -- You received

[android-developers] Re: HTTPS in Android

2011-08-08 Thread perumal316
Bibek coomar@gmail.com wrote: It would be good if you let us know what have your tried and what exactly is not working, some code samples, logs etc. On Aug 2, 8:07 pm, perumal316 perumal...@gmail.com wrote: Hi All, I have implemented HTTP Post to post data to the backend. How do I

[android-developers] HTTPS in Android

2011-08-02 Thread perumal316
Hi All, I have implemented HTTP Post to post data to the backend. How do I implement HTTPS in Android (I have already configured the backend for https)? I googled and found some solutions (http://stackoverflow.com/questions/ 2253061/secure-http-post-in-android) and tried them but I do not

[android-developers] Re: Multiple Intents

2011-07-31 Thread perumal316
a particular name and not the default name. I am not sure how to use onActivityResult to do this. is it possible? Thanks In Advance, Perumal On Jul 31, 12:38 pm, TreKing treking...@gmail.com wrote: On Sat, Jul 30, 2011 at 4:12 AM, perumal316 perumal...@gmail.com wrote: If I just place

[android-developers] Re: Multiple Intents

2011-07-31 Thread perumal316
:20 AM, perumal316 perumal...@gmail.com wrote: Any idea how can i resolve this issue? 1 - Don't hard code SD card paths like that - use Evironment.getExternalStorageDirectory(). 2 - Debug your app to figure out why your app is crashing

[android-developers] Multiple Intents

2011-07-30 Thread perumal316
Hi All, If I got multiple intents, how do I use: @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { . } I have multiple intents upon different button clicks in my application, and for one of the intent, I need to

[android-developers] Camera Intent keeps crashing

2011-07-29 Thread perumal316
Hi All, I am using the following intent to invoke the camera and save the recording as a specific name: filepath = /sdcard/testfolder/testvid.mp4; File vidfile = new File(filepath); Uri viduri = Uri.fromFile(vidfile); Intent i = new Intent(android.provider.MediaStore.ACTION_VIDEO_CAPTURE);

[android-developers] HTTP Post of Image

2011-07-27 Thread perumal316
Hi All, I am using the following intent to invoke the camera: Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE); startActivity(cameraIntent); The image is saved into the sdcard with the time/date as the name. I want to do a HTTPPost of this image once the

[android-developers] Re: HTTP Post of Image

2011-07-27 Thread perumal316
); On Thu, Jul 28, 2011 at 8:14 AM, perumal316 perumal...@gmail.com wrote: Hi All, I am using the following intent to invoke the camera: Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE); startActivity(cameraIntent); The image is saved into the sdcard

[android-developers] Using .so

2011-06-14 Thread perumal316
Hi All, If I have a linux .so library, how do I call the functions in my Eclipse Android project? Is it the same as external JAR libraries? I have tried that way and it is not working. Is there any other method? Thanks In Advance, Perumal -- You received this message because you are

[android-developers] Re: Encoding image into Base64

2011-06-11 Thread perumal316
for instance) - with the correct Content-Type set of course? On 9 Juni, 12:12, perumal316 perumal...@gmail.com wrote: Hi All, I need to do a HTTPPost of a Jpeg and a Jpeg2000 image to a backend. For Jpeg I converted it to byte array and did a Base64 encoding using the Base64 class

[android-developers] Encoding image into Base64

2011-06-09 Thread perumal316
Hi All, I need to do a HTTPPost of a Jpeg and a Jpeg2000 image to a backend. For Jpeg I converted it to byte array and did a Base64 encoding using the Base64 class which is available in Android. See: http://developer.android.com/reference/android/util/Base64.html Is this the correct way to do?

[android-developers] Keep a service running continuously

2011-05-11 Thread perumal316
Hi All, If I want to keep a service (NFC Service) running continuously must I specify it as android:persistent=true under the manifest file? Or must I use Service.startForeground() in the main java file? Or is there any other method? Currently for my NFC application, the NFC service seem to

[android-developers] Re: Keep a service running continuously

2011-05-11 Thread perumal316
I am communicating with a NFC tag and sending commands to the tag. But the service gets cutoff and I could not complete the sending of commands. Increasing the timeout doesn't help too. That's why need looking for a way to continuously run the NFC service. On May 12, 11:12 am, dnkoutso

[android-developers] Re: Sending APDU Command from Nexus S

2011-04-26 Thread perumal316
For IsoDep using setTimeOut function to set a time resolves the issue. On Apr 26, 12:13 pm, perumal316 perumal...@gmail.com wrote: Hi Michael, I changed MiFareClassic object to IsoDep. But I am getting the following error: android.nfc.TagLostException: Tag was lost Must I add

[android-developers] Re: Sending APDU Command from Nexus S

2011-04-25 Thread perumal316
Hi Michael, I changed MiFareClassic object to IsoDep. But I am getting the following error: android.nfc.TagLostException: Tag was lost Must I add in additional code to sustain the connection? (Am I correct?) Thanks In Advance, Perumal On Apr 25, 5:00 pm, Michael Roland mi.rol...@gmail.com

[android-developers] Sending APDU Command from Nexus S

2011-04-18 Thread perumal316
Hi All, I am having Nexus S and a Mifare Tag. Using TagWriter application I am write and read from the Tag. Now I want to try sending an APDU command to the Tag. Is this possible? Any recommendation on how this can be done? Thanks In Advance, Perumal -- You received this message because you

[android-developers] Re: FileContentProvider

2011-04-17 Thread perumal316
file? Thanks In Advance, Perumal On Apr 12, 7:51 pm, Mark Murphy mmur...@commonsware.com wrote: On Tue, Apr 12, 2011 at 4:11 AM, perumal316 perumal...@gmail.com wrote: How do I specify com.android.htmlfileprovider as one of the android authorities in the AndroidManifest file. You can't. I

[android-developers] FileContentProvider

2011-04-12 Thread perumal316
Hi All, How do I specify com.android.htmlfileprovider as one of the android authorities in the AndroidManifest file. I am getting, Installation error: INSTALL_FAILED_CONFLICTING_PROVIDER. It has been used by another program. Is there any workaround for this? Thanks In Advance, Perumal -- You

[android-developers] URI Scheme

2011-04-12 Thread perumal316
Hi All, I have registered my app in the Android system as a URI using the following code: data android:scheme=startapp / action android:name=android.intent.action.VIEW / category android:name=android.intent.category.DEFAULT/category category

[android-developers] Sample SoftKeyboard

2011-03-29 Thread perumal316
Hi All, I am using the sample soft keyboard source code available from the SDK samples to write my own keyboard. For my keyboard, instead of alphabets I am having words. E.g Insert. When user clicks this the word Insert will be inserted into the respective field. Under qwerty.xml, I can change

[android-developers] Re: Starting An Android App From An Url

2011-03-25 Thread perumal316
Hi Hackborn, For the example you have specified what will be the URL be? Is it something like market://? Regards, Perumal On Mar 25, 1:46 pm, Dianne Hackborn hack...@android.com wrote: Yes, for example here is the declaration in the activity of Market that handles the user clicking on an

[android-developers] Starting an Android App from a Website

2011-03-24 Thread perumal316
Hi All, Is it possible to start an Android App from a browser. I would like to create a website that has a button, and whenever the button is pushed, an android application already previously installed have to start. Is this possible? In some of the earlier post here, it was mentioned that

[android-developers] Re: Copy/Paste

2011-03-19 Thread perumal316
Hi Murphy, Where should I have the javascript method which I want to execute or load using loadURL()? It should be within the Android application? Regards, Perumal On Mar 17, 11:57 am, Mark Murphy mmur...@commonsware.com wrote: On Thu, Mar 17, 2011 at 11:26 AM, perumal316 perumal...@gmail.com

[android-developers] Re: Copy/Paste

2011-03-19 Thread perumal316
 pm, perumal316 perumal...@gmail.com wrote: Hi Murphy, Where should I have the javascript method which I want to execute or load using loadURL()? It should be within the Android application? Regards, Perumal On Mar 17, 11:57 am, Mark Murphy mmur...@commonsware.com wrote: On Thu, Mar

[android-developers] Copy/Paste

2011-03-17 Thread perumal316
Hi All, Is it possible to use the KeyEvent API for copy/paste functionality? It is possible to insert keystrokes into a TextView using KeyEvent. How do I copy the string from a TextView using KeyEvent? Is there any other way? Regards, Perumal -- You received this message because you are

[android-developers] Re: Copy/Paste

2011-03-17 Thread perumal316
mmur...@commonsware.com wrote: On Thu, Mar 17, 2011 at 2:54 AM, perumal316 perumal...@gmail.com wrote: Is it possible to use the KeyEvent API for copy/paste functionality? You don't need to. It is possible to insert keystrokes into a TextView using KeyEvent. TextViews are non-editable. How

[android-developers] Copy/Paste Programmatically

2011-03-14 Thread perumal316
Hi All, Currently for Android I can copy/paste by long pressing on the field and choosing copy/paste respectively. I want to do this automatically. Meaning upon clicking a button, can simulate the long press and copy/paste programatically. Is this possible? Thanks In Advance, Perumal -- You

[android-developers] Re: Regarding Screen Resolution

2011-03-14 Thread perumal316
Which device are you using? On Mar 14, 4:30 pm, yogendra G yogi2...@gmail.com wrote: Hi All, I Get My Screen opened full screen whenever i start a project every time so how can i get it small screen by default when ever i open my projct. Regards, Yogendra G -- You received this message

[android-developers] Re: Regarding Screen Resolution

2011-03-14 Thread perumal316
and run a pgm am getting tht problem... Regards, Yogendra G On Mon, Mar 14, 2011 at 2:04 PM, perumal316 perumal...@gmail.com wrote: Which device are you using? On Mar 14, 4:30 pm, yogendra G yogi2...@gmail.com wrote: Hi All, I Get My Screen opened full screen whenever i start

[android-developers] Re: Copy/Paste Programmatically

2011-03-14 Thread perumal316
Hi Appel, Actually I have Googled this previously but could not find anything useful. My application is a Webview that will load a custom URL. In WebView I need to copy out some data from the data field do computation and insert back the results into the field. Currently the only way is for the

[android-developers] Re: Copy/Paste Programmatically

2011-03-14 Thread perumal316
Is it possible to use KeyEvent API? There are KeyEvent for Long_Press etc. See: http://developer.android.com/reference/android/view/KeyEvent.html Possible to use this for copy/paste? Regards, Perumal On Mar 14, 5:50 pm, appel johan.appelg...@gmail.com wrote: And how was I supposed to know you

[android-developers] Background Service

2011-03-13 Thread perumal316
Hi All, I am writing an Android background service. I want it to become active when my another application is started. Any idea how do I detect the activation of another application? Should I package the application and service together? Thanks In Advance, Perumal -- You received this

[android-developers] Re: Background Service

2011-03-13 Thread perumal316
it with this application. But I am not sure how to do the interaction with the webpage. Getting and inserting into the data field. Is this possible to be done through a background service? Regards, Perumal On Mar 14, 9:34 am, TreKing treking...@gmail.com wrote: On Sun, Mar 13, 2011 at 8:25 PM, perumal316 perumal

[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] 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] 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] 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] 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] 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: 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] 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] 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] 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] 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-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] 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] 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] 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] 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: 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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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

  1   2   >