[android-developers] Re: Debugger to run Android Applications

2013-02-19 Thread Ashu
You should have mentioned the Android SDK Version that you are using when launching emulator, in your post. Assuming that you are using latest Android SDK-rev 21, you can edit your AVD Instance through AVD Manager tool (part of ADT Plug-in in eclipse). You need to Enable/select Keyboard check-bo

[android-developers] help me

2012-07-10 Thread Ashu
i am having an application of email sending ,i made an activity and start it as a service whenever i boot my device it displaying the ui screen of the activity,,i want to run my activity in background ,,it should not display after booting but should run in background how can i make a service wi

[android-developers] services in android

2012-07-10 Thread Ashu
can we create a service without any activity i hav an application of email sending automatically so i made a activity and run it as a service when my device is switched on after booting it start automatically and display the ui of activity,, i dnt want dis ui,,what shall i do help me i want my

[android-developers] connectivity of android appliacation with sqllite

2012-07-10 Thread Ashu
can we connect a android application to sqlite database just like a connectivity of mysql to java code,,plz help me ,i am new to android -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developer

[android-developers] How to make un clickable App Icon like YouTube App in android

2012-06-29 Thread Ashu Dubey
How to make un clickable App Icon like YouTube App in android -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group,

[android-developers] sending string constant to server

2012-06-12 Thread ashu
I am developing an android application in which am trying to send string constants to server via GPRS. I am able to send text files. Can you provide me the lead to send string constants?? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To p

[android-developers] Re: Blocking Outgoing SMS

2012-05-15 Thread Ashu
Android system does not provide a way to block outgoing SMS. The similar question was discussed on Android Developers hung out on 26-Apr-2012, and Android Developers stated clearly that it is not possible. One suggestion was to put the phone into Airplane mode at the time of sent SMS intent,  but a

[android-developers] display selected image from gallery

2012-03-01 Thread Ashu Gupta
in a gridview, all images of SD card are displayed(like in gallery). If I click and select one picture, I want to display it on full screen. How to display image on full screen from gridview -- You received this message because you are subscribed to the Google Groups "Android Developers" group. T

[android-developers] picture editing

2012-02-23 Thread Ashu Gupta
I want to open an existing jpeg file on my phone and edit it, save it. Can someone tell me what are the APIs available to open/modify an existing jpeg image on the phone memory -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this

[android-developers] Youtube Upload

2010-12-28 Thread ashu
Hi all, Plz provide information about youtube APIs for uploading video in android platform. Is Google Data APIs are helpful?? Plz share some references. Thanks. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send em

[android-developers] Video display not coming on Android1.6 SDK on OMAP3430 board

2009-12-17 Thread Ashu
Hi, In porting android SDK 1.6, we are facing an issue with video display. The board is unable to play any Video file, showing error on screen, like "Sorry,can't play this video". But it is playing audio well, We are using ALSA audio, We are using Meridian video player to play the video files & w

[android-developers] Re: use of buildspec.mk

2009-11-28 Thread Ashu
In Android root Directory, you will find this file. In Android build system, this file is copied from vendor specific location into root. This file defines the kind of build you want for your Implementation. When you type "make -j2" or "make -j4" , this file will check all necessary targets for whi

[android-developers] Re: Accelerometer frequency

2009-02-17 Thread ashu
So my question still stands. Frequency? Precision? Thanks for the attempt, Jubei. On Feb 11, 6:14 am, Jubei wrote: > Supposedly you pass a 3rd parameter to the sensormanager's > registerLister function but It doesnt seem to make any difference. > > On Feb 11, 7:33 pm,ashu wro

[android-developers] Accelerometer frequency

2009-02-11 Thread ashu
Hey, I wanted to get the frequency of accelerometer output. How many readings can I get per second? And to what precision do I get? Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group.

[android-developers] g1 accelerometer refresh rate

2009-02-10 Thread ashu
Hey, I'm interested in an app that gets as much accelerometer data as possible in a fixed amount of time. How frequent can an application access the accelerometer (in the order of magnitude: 10Hz, 1kHz, 1mHz? How often is the accelerometer updated? --Andrew --~--~-~--~~

[android-developers] Re: I want to emulate the simple listview's rows

2009-02-09 Thread ashu
Chander, I fixed it; thank you a ton. On Feb 9, 1:14 am, Chander Pechetty wrote: > Looking closer at your layout, the textview's layout_width is set to > wrap_content, it should be  android:layout_width="fill_parent" --~--~-~--~~~---~--~~ You received this message

[android-developers] Re: I want to emulate the simple listview's rows

2009-02-08 Thread ashu
Still only selects the text. Any workarounds? On Feb 8, 7:27 pm, Chander Pechetty wrote: > You need to tell your ListView that the list items are focusable. > > ListView.setItemsCanFocus(true). --~--~-~--~~~---~--~~ You received this message because you are subscr

[android-developers] I want to emulate the simple listview's rows

2009-02-08 Thread ashu
I made my simple, custom rows and listviews. Right now, only clicking on the text of the row is valid selection area. I want the entire row, even the no-text area to be selectable. Where do I modify? Am I looking for focusing or selecting? My row xml: -

[android-developers] custom EditText that executes callback function

2009-02-05 Thread ashu
I have a user input box that I want to execute a function every time I press enter. I can't call super.onKey(...) to do the standard text input. I have two ways to solve this problems, but I'm having trouble looking for places to find out how to do this. 1. Convert the keycode to a character tha