[android-beginners] Trying to turn off candidates view in EditText with on-screen keyboard

2009-10-23 Thread Bamsen
Hi, My first (and very simple) application uses an EditText box to input information that is not English words. When I do this i get the candidates view (which I normally love :) with suggestions for known words. I do not want to pollute my word list by saving what I typed so I want to turn off

[android-beginners] Re: Android 1.6 SDK is here!

2009-10-23 Thread Alan Cassar
You do not download the android sdk to your phone, you download it to your computer and use it for development. Your phone should have android installed though. Alan Cassar, Software Developer | Tel: +356 21334457 | Fax: +356 21 334156 Alan Cassar,Software Engineer | Tel: +356

[android-beginners] Re: make seekbar (un)clickable depending on RadioButton

2009-10-23 Thread Alan Cassar
Title: Alan Cassar, Software Developer | Tel: +356 21334457 | Fax: +356 21 334156 if the user can change the value of the radio button, which I am assuming he can, then you need to change the clickable value of the seekbar everytime the value of the radio button change. you can easily do that

[android-beginners] Re: Web servers

2009-10-23 Thread Alan Cassar
Title: Alan Cassar, Software Developer | Tel: +356 21334457 | Fax: +356 21 334156 You can take a look at iJetty: http://code.google.com/p/i-jetty/ Alan Cassar,Software Engineer | Tel: +356 21334457| Fax:+356 21 334156 ricston Ltd.,Northfields Suite 4, Independence Avenue, Mosta

[android-beginners] Intercept an outgoing call

2009-10-23 Thread Nemat
Hi, I am trying to disconnect an outgoing call by injecting END key but it gives a security exception.I have added INJECT_EVENT permission in manifest.Here is my code: Handler handler; Thread t = new Thread() { Object sync = new Object(); public void run() {

[android-beginners] Re: Skipping the long load time by having the emulator on all the time

2009-10-23 Thread Dori
I was having on and off problems from pushing apk's onto the emulator, but on my machine sometimes when the emulator has started up it is not visable to ddms or the ADT in eclispe, and i recieve an error that the emulator image is already in use. Not sure if this is the problem you are having but

[android-beginners] Re: Poor Documentation

2009-10-23 Thread Dori
i dont know if thats a joke or not?! the docs are not that bad, try developing for facebook stuff, so out of date it hurts! On Oct 22, 2:00 pm, usharani ganapathy usharani.ganapa...@gmail.com wrote: hi i m new to androidwhat is intent? --~--~-~--~~~---~--~~

[android-beginners] Re: Poor Documentation

2009-10-23 Thread Naveen Krishna Ch
2009/10/23 Dori dorian.cus...@googlemail.com i dont know if thats a joke or not?! the docs are not that bad, Docs exists ??? tell where, look for android doc in google (or) touch this http://developer.android.com/guide/index.html try developing for facebook stuff, so out of date it

[android-beginners] FREE! FREE! FREE!

2009-10-23 Thread mr.cash
ITS FREE TO JOIN IN WEBSITE AND GET MORE FRIENDS,BOOKS,STUFFS, TIPS ETC... IF U LUCKY, U CAN ALSO WIN PRIZES... JUST TRY BY THE FOLLOWING WEBSITE http://123maza.com/1011/cook/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[android-beginners] Re: Using external font in android application

2009-10-23 Thread kk_Kiran
On Oct 21, 4:30 pm, Mark Murphy mmur...@commonsware.com wrote: No, I have no idea. anyways, thx. Hope we will soon get this support. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners group. To

[android-beginners] Re: Web servers

2009-10-23 Thread D G
Already got it - many thanks Alan On Oct 23, 2009, at 4:49 AM, Alan Cassar alan.cas...@ricston.com wrote: You can take a look at iJetty: http://code.google.com/p/i-jetty/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[android-beginners] Re: Skipping the long load time by having the emulator on all the time

2009-10-23 Thread Indicator Veritatis
Well, I haven't seen the message recur, I distinctly remember the word 'push' in it, but not in use. So it is not clear that you are seeing the same message, you were probably seeing a different one. Now that I am almost done with Part 5 of the tutorial, I will likely soon backup to to steps 3

[android-beginners] removing the dictionary from the ime

2009-10-23 Thread jax
Is is possible to remove the automatic dictionary from the ime when in a particular text field? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners group. To post to this group, send email to

[android-beginners] storage location for barcode read

2009-10-23 Thread Abhishek
Hello, I have installed barcode scanner application. Does anyone have idea when the application scans the barcode image where the image is stored on the phone?? Thanks, Abhishek --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[android-beginners] Re: Poor Documentation

2009-10-23 Thread shobhit kasliwal
Thank you naveen I will read the documents and try to solve the problem as guided by you. Thanks, Shobhit On Fri, Oct 23, 2009 at 5:42 AM, Naveen Krishna Ch naveenkrishna.ch@ gmail.com wrote: 2009/10/23 Dori dorian.cus...@googlemail.com i dont know if thats a joke or not?! the docs are

[android-beginners] user can't see my app in market?

2009-10-23 Thread Jeffrey Blattman
i have an app published to the market, and a user is telling me that they can't see it ... through searching, or even when they scan the QR code i comes up as not found. the user is not in the US, but i published it to "all locations". any ideas? --

[android-beginners] Regular expressions help

2009-10-23 Thread jax
I am trying to strip all whitespace from each line in a EditText View. The expression I am using is this String result = Pattern.compile(^\\s+|\\s+$, Pattern.MULTILINE).matcher(input).replaceAll(); This works for the following input hello hello hello hi

[android-beginners] Re: user can't see my app in market?

2009-10-23 Thread Jeffrey Blattman
never mind, version issue. On 10/23/09 8:35 AM, Jeffrey Blattman wrote: i have an app published to the market, and a user is telling me that they can't see it ... through searching, or even when they scan the QR code i comes up as not found. the user is not in the US, but i published

[android-beginners] Re: Regular expressions help

2009-10-23 Thread Jeffrey Blattman
hi, i think it has to do with the multiline flag. that causes it to eat the newline (read the javadocs). i don't see any neat way to do it, other than treating whitespace and newlines separately. for example, something lime String s1 = "hello\n hello\n\n hello\n hi\n"; Pattern p =

[android-beginners] Re: Skipping the long load time by having the emulator on all the time

2009-10-23 Thread Xavier Ducrohet
On Thu, Oct 22, 2009 at 8:00 PM, Indicator Veritatis mej1...@yahoo.com wrote: But can't one of you Android SDK hotshots just grep the resources for the SDK (or is it the ADT) for the word 'push'? You will find it faster than I would (by either above method) if you do. Or do you think this

[android-beginners] (Root) update to rc33

2009-10-23 Thread stephen rigg
I jus successfully rooted my g1 Nd all the links for updating it to rc33 nd they were unresponsive. My situation is I am like the lowest buil of the phone trying to get these amazing features like: Multi-touch Tethering, nd ect How do I start on my way frum here?

[android-beginners] Re: auto-enable GPS

2009-10-23 Thread sangorys
Honestly I was expecting such kind of response from both of you :-) The secret sauce is android.permission.WRITE_SECURE_SETTINGS. Note _SECURE_. This is the only place where Android didn't tell me You need XYZ permission to do ... so far. I am agree with trhe other guys, it does not work.

[android-beginners] setContentView - new

2009-10-23 Thread VBMichi
Hi, ich have in res/layout/ two xml files: main.xml test.xml I want to click a button in main.xml, and set the conent view to test.xml. The buttons id in main is testshow. The Code in my java file is: package com.androidapp; import android.app.TabActivity; import android.os.Bundle; import

[android-beginners] how to set the hyperlink text with textview.

2009-10-23 Thread pp
I'm working on java for android and I need your help. my question is set the text with textview, its style is look like the hyperlink( color, underline etc...), and when i touch the text, i hope i can hook the click event and handle it by myself. whether it's feasible or not? thanks in

[android-beginners] Update 1.6

2009-10-23 Thread tlascp00
Dear, we have 2 HTC Magic (Vodafone), one of them has done the upgrade to 1.6, but the seconde do not do the upgrade, when i choose System updates, the message your system is currently up to date. They are Vodafone branded, so there is no possibility to update with a PC. Is there a possibility

[android-beginners] Maps not showing when used in activity group

2009-10-23 Thread Ulf Herge
Hi! I have a slight problem with my android application. My thought was to re-use as many acitivites as possible in different places so I thought an activity group would be the best shot for me to use in some places and hence I would be able to re-use my map and a couple of ListActivities On

[android-beginners] TimePicker Hour Dissapears on Rotate

2009-10-23 Thread Veyette Software
I have 2 timePickers declared in the xml layout file and defined in an onClick method for a submit button. When I run the app and rotate the screen, the hour text box in both timePickers goes blank. It still remembers the number (if I select the down arrow next to it, it goes to one less hour

[android-beginners] Re: Programming The UI

2009-10-23 Thread Alex (PS3 Friends)
Was a little weird at first with the XML inflate, but gotten used to it. I actually kind of like it now the more I play with it. Alex On Oct 22, 11:08 am, xdiscx xdi...@yahoo.com wrote: How do you guys find the learning curve for programming the UI? Thanks, XDiScX

[android-beginners] Re: images from images.google.com

2009-10-23 Thread pti4ik
Thanks a lot! On 21 окт, 08:13, jphaberman jer...@thehabermans.com wrote: On Oct 18, 3:33 pm, pti4ik pti...@yandex.ru wrote: Hi everybody! I need to search web for images by keyword or phrase with images.google.com and then to show some of the found images in my app. So does that web

[android-beginners] Re: Update 1.6

2009-10-23 Thread Balwinder Kaur (T-Mobile USA)
This is a developer forum for Android SDK issues. However, to assist you, your options are: 1. Contact Vodafone Tech support, if you want the official update. This is the safe, official, and probably easiest way. If you want to have some hacking fun and can live with the thrill/risk of

[android-beginners] Re: AutoCompleteTextView and ArrayAdapter with async update

2009-10-23 Thread Tim
Did you figure this one out? I have a similar issue: http://www.anddev.org/viewtopic.php?p=28428#28428 On Sep 18, 12:11 am, ordrune shawndel...@gmail.com wrote: I have anAutoCompleteTextViewusing anArrayAdapterfor its data.  I am trying to asynchronouslyupdatetheArrayAdapter, but if there is

[android-beginners] going back without hitting back button

2009-10-23 Thread JasonMP
anyone able to tell me how i would progammatically go back a step in the stack when say, for example, a user hits a button widget? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners group. To post to

[android-beginners] Re: going back without hitting back button

2009-10-23 Thread Tim Clark
http://groups.google.com/group/android-developers/browse_thread/thread/832f4356e60cc8ea 2009/10/23 JasonMP hyperje...@gmail.com: anyone able to tell me how i would progammatically go back a step in the stack when say, for example, a user hits a button widget?

[android-beginners] Re: going back without hitting back button

2009-10-23 Thread JasonMP
got it! thanks! On Oct 23, 5:54 pm, Tim Clark timoth...@gmail.com wrote: http://groups.google.com/group/android-developers/browse_thread/threa... 2009/10/23 JasonMP hyperje...@gmail.com: anyone able to tell me how i would progammatically go back a step in the stack when say, for

[android-beginners] Sleep mode

2009-10-23 Thread Anders Feder
Hello, Is it possible to programmaticly send the device into sleep mode (i.e. like when pressing the power button once so screen the turns off and locks)? Thanks in advance, Anders Feder --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-beginners] passing a fn thru SQLiteDatabase insert?

2009-10-23 Thread Craig
I'm missing something here - here is a brief snippet showing what I'm trying to do, with db a SQLiteDatabase object: ContentValues values = new ContentValues(); values.put(KEY_DATE, julianday('now')); return db.insert(TABLE_NAME, null, values); The KEY_DATE column is an integer column,

[android-beginners] Re: passing a fn thru SQLiteDatabase insert?

2009-10-23 Thread RichardC
See: http://www.sqlite.org/datatype3.html Each column in an SQLite 3 database is assigned one of the following type affinities: * TEXT * NUMERIC * INTEGER * REAL * NONE A column with TEXT affinity stores all data using storage classes NULL, TEXT or BLOB. If numerical data

[android-beginners] Is it possible to append a value to R.string or any resource under R.?

2009-10-23 Thread David
Screen A permits the user to input a value into an EditText field. Screen B populates a TextView using one of the entries in strings.xml based upon the TextView value. For example, if the user inputs 2 on Screen A then Screen B should populate the TextView with R.strings.h2. I have tried the

[android-beginners] Does anyone know how to set G1 use Wi-Fi with static IP?

2009-10-23 Thread Farproc
I set my G1 use static IP and disable DHCP of my router. But it seems that my G1 still obtains a different IP address from router anyway. Does anyone know why?? ps. I can visit internet through the auto obtained IP. --~--~-~--~~~---~--~~ You received this message

[android-beginners] Re: Is it possible to append a value to R.string or any resource under R.?

2009-10-23 Thread Farproc
// popluate textView with the string R.string.h + whatever the user put on Screen A if(desiredString.equals(1) { textView.setText(R.string.h1); } else if(desiredString.equals(2) { textView.setText(R.string.h2); } else if(){ // etc. } else . { } On 10月24日, 上午9时59分,

[android-beginners] Re: Regular expressions help

2009-10-23 Thread jax
ok thanks, as I understand \s matches all whitespace characters as there are some extra unicode whitespace characters in other languages (not part of ASCII). Maybe it is not worth worrying about these characters though. I will try you solution above. On Oct 23, 11:40 pm, Jeffrey Blattman

[android-beginners] SQLiteDatabase update?

2009-10-23 Thread Craig
I'm having a problem getting an update statement to work. I have tried it a number of different ways, but it just isn't working - I must be missing something. private void changeScore(long personId, long categoryId, boolean sign) { int julianDay = getDayNumber();

[android-beginners] Re: Is it possible to append a value to R.string or any resource under R.?

2009-10-23 Thread David
@Farpoc Your solution worked perfectly. Thank you very much. I have about 300 possible strings the user can choose. Is there a less CPU intensive way to do this without 300 else if statements? If not, hey, the application works well enough. But it would be cleaner code if it were possible