[android-developers] How to search local banks..?

2010-03-16 Thread android beginner
Hello Every One ... Any one help me out regarding how can I retrieve near by banks to the current location. I am using 1.6 SDK Thanks in advance -- 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] Invoking Process from Application

2010-02-08 Thread android beginner
Hi, We are migrating ncurses based application on our linux target platform into Android based ones. We have one application(parent) which runs ping process(child) and reads the output (through Pipe) and displays on the screen. I need to develop similar sort of application, but couldn't find

[android-developers] Re: TextView - disable focus

2010-02-04 Thread android beginner
Hi, Any Suggestions? Thanks On Sun, Jan 31, 2010 at 3:17 PM, android beginner android.beginne...@gmail.com wrote: Hi, I have a listview, and wanted to make some list items to be non-focusable. i.e On pressing the down-arrow key, some items in the middle of the list gets skipped. I

Re: [android-developers] Re: System Settings

2010-02-02 Thread android beginner
(), NOTIFICATIONS_USE_RING_VOLUME) Physically, these are stored in a database, but you shouldn't do it that way. On Feb 1, 9:52 pm, android beginner android.beginne...@gmail.com wrote: Hi, How System Settings (eg, volume, brightness) stored in Android and where? Thanks -- You received

Re: [android-developers] executing a shell script from Android application

2010-02-02 Thread android beginner
first thought that came to my mind is permission. ofcourse you can confirm that with logcat. On Tue, Feb 2, 2010 at 6:58 PM, Asif k asifk1...@gmail.com wrote: Hi all, I am configuring wifi on my android based board using shell script. Now I want to execute the same script from android

[android-developers] Socket creation failure

2010-02-02 Thread android beginner
Hi, I created a simple client socket from my Activity, but it fails. I am running this activity in emulator and server runs on PC(its a different application without Android stuff). *clientSock = new Socket(127.0.0.1, 30001);* logcat shows java.net.SocketException: permission denied maybe

Re: [android-developers] Socket creation failure

2010-02-02 Thread android beginner
Thanks On Wed, Feb 3, 2010 at 4:10 PM, Mike Novak m...@androidnerds.org wrote: uses-permission android:name=android.permission.INTERNET / ^^ place the above line in your AndroidManifest.xml file. Mike On Feb 3, 2010, at 12:07 AM, android beginner wrote: Hi, I created a simple client

[android-developers] Service - Need Info

2010-02-01 Thread android beginner
Hi, I created remote service and wanted to get the data from MyActivity's onCreate(). Below bindService returns true but ServiceConnection() is not called. Hence testService remains null and I couldn't get the data I want from onCreate. Any Suggestion? public class MyActivity extends Activity

[android-developers] Need Suggestion on running Service

2010-02-01 Thread android beginner
Hi, Currently I am migrating our ncurses based application on Android powered target hardware. I need your expert advice on the feasibility of following scenario. * In our existing application, we have a daemon process A which receives query from UI process. * Example, UI process sends

Re: [android-developers] Service - Need Info

2010-02-01 Thread android beginner
Hi Mark, I observed that after calling bindService in onCreate we should not call the interface methods as ServiceConnection() runs after onCreate(maybe bindService puts serviceConnection in queue). Hence after calling interface method inside onServiceConnected its working fine. Thanks On

[android-developers] System Settings

2010-02-01 Thread android beginner
Hi, How System Settings (eg, volume, brightness) stored in Android and where? Thanks -- 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,

[android-developers] Re: EditText - maximum width

2010-01-31 Thread android beginner
Hi, Any suggestion? Thanks On Jan 29, 7:49 am, android beginner android.beginne...@gmail.com wrote: Hi, I made the EditText to accept only 4 characters, but my question was different. sorry for not being clear. When the EditText comes up, by default its very small(equavalent

Re: [android-developers] custom adapter

2010-01-31 Thread android beginner
I believe in your custom ArrayAdapter, you would have override getView. get the default text size, double the size and again set the text size. Hope this helps. On Mon, Feb 1, 2010 at 10:51 AM, Andrei gml...@gmail.com wrote: How do i set row height if text of some rows more than one line when

Re: [android-developers] Re: custom adapter

2010-01-31 Thread android beginner
wrote: true is there example? On Jan 31, 7:01 pm, android beginner android.beginne...@gmail.com wrote: I believe in your custom ArrayAdapter, you would have override getView. get the default text size, double the size and again set the text size. Hope this helps. On Mon, Feb 1

[android-developers] TextView - disable focus

2010-01-30 Thread android beginner
Hi, I have a listview, and wanted to make some list items to be non-focusable. i.e On pressing the down-arrow key, some items in the middle of the list gets skipped. I tried the following method. 1. created separate ArrayAdapter class. 2. override getView method. 3. In getView, I called

[android-developers] EditText - maximum width

2010-01-28 Thread android beginner
Hi, I need to have an EditText with maximum width for 4 characters. I do not want set maximum width in pixels as I have my target with couple of different screen resolutions. Can anyone suggest me how to do this? Thanks -- You received this message because you are subscribed to the Google

Re: [android-developers] Re: EditText - maximum width

2010-01-28 Thread android beginner
characters. Thanks On Fri, Jan 29, 2010 at 1:08 PM, Zsolt Vasvari zvasv...@gmail.com wrote: It helps reading the documentation, but here's your answer: addFilter(view, new InputFilter.LengthFilter(maxLength)); On Jan 29, 7:00 am, android beginner android.beginne...@gmail.com wrote

[android-developers] Re: EditText - maximum width

2010-01-28 Thread android beginner
Hi Sasikumar, Thanks for your email. But as mentioned in my first email, I do not want to set it with pixel size as I have couple of screen with different resolution. Thanks On Fri, Jan 29, 2010 at 2:47 PM, Sasikumar S sasikumar.it1...@gmail.comwrote: Hi android beginner, you can set your

Re: [android-developers] Re: list - need suggestion

2010-01-27 Thread android beginner
); startActivity(startActivity); } } } On Tue, Jan 26, 2010 at 5:28 PM, theSmith chris.smith...@gmail.com wrote: On Jan 25, 11:48 pm, android beginner android.beginne...@gmail.com wrote: so, each sub-lists should be created as list activity. On selecting any item, should call that particular

Re: [android-developers] Re: list - need suggestion

2010-01-27 Thread android beginner
and in onResume I called setSelection(position). But still that element in the list is not highlighted Any Suggestions? Thanks On Thu, Jan 28, 2010 at 11:52 AM, theSmith chris.smith...@gmail.com wrote: On Jan 27, 7:03 pm, android beginner android.beginne...@gmail.com wrote: Hi, The basic list

Re: [android-developers] Re: list - need suggestion

2010-01-27 Thread android beginner
Yes. Because of touch mode, I didn't get the focus. Since my hardware doesnt have the the touch screen, it should not be an issue :) On Thu, Jan 28, 2010 at 3:23 PM, android beginner android.beginne...@gmail.com wrote: Yea, went through the document and got good understanding of activities

[android-developers] string to uppercase not working

2010-01-27 Thread android beginner
Hi, The following is the code snippet. It is observed that after calling the toUpperCase routine, 'f' is not converted to F. Can anyone let me know why this behaviour?? String str = f; str.toUpperCase(Locale.*ENGLISH*); Thanks -- You received this message because you are subscribed to the

Re: [android-developers] Re: list - need suggestion

2010-01-25 Thread android beginner
, saad bouchehboun bsaad1...@gmail.comwrote: your item must be a listactivity , when you add it to your parent list , the UI is adapted automaticly . On 25 jan, 06:24, android beginner android.beginne...@gmail.com wrote: Hi, My Activity has list of items and on clicking any item, new window

Re: [android-developers] Log messages no longer appear in LogCat

2009-11-16 Thread android beginner
s i experience the same.did u get any answer -- 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