[android-developers] Re: Cheap Bluetooth devices sought

2011-08-10 Thread MattClark
http://www.gridconnect.com/btmodule.html Bluetooth Periphial Device Just Send Serial Commands Over BT and then convert via Microcontroller. For <=$10 it will be pretty hard to find one. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To po

[android-developers] Multiple Activity Problems

2011-08-10 Thread MattClark
In Master Class: Called On Button Press Intent Team228Intent = new Intent(Master.this, Team228.class); Master.this.startActivity(Team228Intent); In Team228 Class: setContentView(R.layout.team228_home); In Master Class: Called On Button Press Intent AboutIntent = new Intent(Master.this, About.c

[android-developers] Turn off Spell Check [Not Autocorrect]

2011-07-01 Thread MattClark
Software Version: 2.76.651.4 Android Version: 2.3.3 HTC Sense Version: 2.1 I know this is probably not the place to ask, but i am part of this group anyways, after the latest software update, in messages my HTC EVO Shift now spell checks, not autocorrect, but spell check. It red underline any miss

[android-developers] Mauliple 'Window' Application and Changing Layout At Runtime

2011-05-31 Thread MattClark
I have an application that when running i need to multiple times change the layout of the screen, however, the program errors on my buttons listeners when i set a new content view. How would i go about changing the listners to the new layout? My second question is how i would start a new 'window'

[android-developers] Re: Android Application Settings Problems

2011-03-24 Thread MattClark
on. ~Matt On Mar 24, 12:46 am, kiran wrote: > Could you provide log cat error message or some more detailed code > what you are executing. > Because the piece of code you wrote some what confusing me > public SharedPreferences settings = getSharedPreferences(PREFS_NAME, >

[android-developers] Android Application Settings Problems

2011-03-23 Thread MattClark
I am trying to use application preferences in my app, following this at AndroidDevelopes: http://developer.android.com/guide/topics/data/data-storage.html my code is as follows. imports: import android.content.SharedPreferences; declarations: public String PREFS_NAME = "MyAppSettings"; public Sh