[android-beginners] Re: Custom Title Bar

2008-12-05 Thread for android
setTitle(title) in your onCreate On Thu, Dec 4, 2008 at 9:18 PM, [EMAIL PROTECTED] <[EMAIL PROTECTED]>wrote: > > Hi, > I want to use custom title bar in my application, which changes when > application is running. > What I found is that I may use > requestWindowFeature(Window.FEATURE_CUSTOM_TITL

[android-beginners] Kogan Agora Pro skin now available for Android Emulator!

2008-12-05 Thread Tea Vui Huang
Kogan Agora Pro skin now available for Android Emulator! http://teavuihuang.com/android To install, download and unzip "QVGA-L-KoganAgora.zip" to the Android skin directory, e.g. "C:\android-sdk-windows-1.0_r1\tools\lib\images \skins". To run the Android emulator with this Kogan Agora Pro skin, e

[android-beginners] TranslucentBlurActivity help

2008-12-05 Thread Tom
I've seen a number of questions/issues with the translucent blur activity example but no solution that works for me. I see the text but the background is solid without any transparency. Can anyone spot what I am missing in the various pieces below? --AndroidManifest.xml-- --res/layout

[android-beginners] How to add code to HAL layer without adding to hardware directory

2008-12-05 Thread [EMAIL PROTECTED]
We have downloaded Android source and are developing pieces in the HAL layer that we want to interact with Android System. Question : We would like to keep the Android code that we downloaded intact as much as possible. Most of the interfaces that we are using are from ./ hardware/ directory (atl

[android-beginners] Re: How to add code to HAL layer without adding to hardware directory

2008-12-05 Thread Mark Murphy
[EMAIL PROTECTED] wrote: > We have downloaded Android source and are developing pieces in the HAL > layer that we want to interact with Android System. > > Question : > We would like to keep the Android code that we downloaded intact as > much as possible. Most of the interfaces that we are using

[android-beginners] where do control id's get defined.

2008-12-05 Thread Josh
I know that strings should be stored in res/strings.xml but where do i store control names(ID's)? In this example the name of the id variable(im guessing that's what it's called) is list_item_title. Where would i define that value? android:id="@+id/list_item_title" Also is this the only way to n

[android-beginners] Develop android on openSolaris

2008-12-05 Thread Claudio
Hi...Today I see that exist a netbeans plugin for develop android so I try to write a very difficult application "HELLO WORLD" but when I try to compile it this is the result: Created dir: /export/home/prez/NetBeansProjects/AndroidApplication2/ build/classes Compiling 1 source file to /export/hom

[android-beginners] gmail notification on T mobile android phone

2008-12-05 Thread Erik
I don't want notification on my phone every time I get an email. But I do want notification when I get a text message. Possible? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to th

[android-beginners] Why the Android.Editor.commit return false, But the value is OK

2008-12-05 Thread MK
I have a problem in following code: Activity---HelloAndroid .. btnSpp.setOnClickListener(new View.OnClickListener(){ public void onClick(View v){ Intent i=new Intent(); i.setClass(HelloAndroid.this, SharePrefere

[android-beginners] Zoom problem in OpenGL

2008-12-05 Thread Iulian
Hi everyone, I want to zoom in on a 2D drawing in OpenGL and so I modify the clipping area when a button is pressed. The zoom algorithm is very simple: float initialWidth=Math.abs(screenArea.maxX-screenArea.minX); screenArea.minY += zoomSize; screenArea.maxY -= zoomSize; float zoomedWidth=Math.a

[android-beginners] dynamic control creation

2008-12-05 Thread Josh
is there a way to create multiple button controls dynamically and to have the same listener handle all of them? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send em

[android-beginners] button names - where are they stored?

2008-12-05 Thread Josh
I notice in all of the code examples that when a widget has an id it is usually something like android:id="@+id/widget28" Which im assuming is just a variable that is stored somewhere. Where are they stored? Also is that the only way to name widgets? In just about every other language i have used

[android-beginners] installation error:INSTALL_FAILED_INSUFFICIENT question

2008-12-05 Thread hc huang
when I run a program,the emulator gives the following tips: Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE The document of SDK said the "if the package manager service found that the device didn't have enough storage space to install the app ", I don't know why.First time when I run this a

[android-beginners] Re: buggy Android phone (Tmobile g1)

2008-12-05 Thread dangerousdaren
According to http://www.androidinmymobile.com the new k9 release supports Accepting previously untrusted certificates including self signed certificates for SSL and TLS access to POP3 and IMAP email. --~--~-~--~~~---~--~~ You received this message because you are

[android-beginners] XMLHttpRequest Handling

2008-12-05 Thread Gaurav Rathod
Hi All, I would like to know how do I handle XMLHttpRequest from javascript. I have a WebView control in which I load the html file. This html file onload calls a javascript function onLoad(). This onLoad() calls a javascipt function in test.js file named getImage (); This getImage() in javascr

[android-beginners] Re: where do control id's get defined.

2008-12-05 Thread Romain Guy
@+id/ means "create the following id" whereas @id/ means "reference the following id." So when you write android:id="@+id/myid" you just created, and assigned, the id "myid" to the widgets. Like strings are generated in R.strings, ids are generated in R.id. So in your code you would do findViewByI

[android-beginners] Re: Custom Title Bar

2008-12-05 Thread and.m...@gmail.com
Hi, Thanks for the reply. On Dec 5, 3:27 am, "for android" <[EMAIL PROTECTED]> wrote: > setTitle(title) in your onCreate > > On Thu, Dec 4, 2008 at 9:18 PM, [EMAIL PROTECTED] <[EMAIL PROTECTED]>wrote: > > > > > > > Hi, > > I want to use custom title bar in my application, which changes when > > a

[android-beginners] One problem with varible passing

2008-12-05 Thread and.m...@gmail.com
Hi, I have 2 activity which are using RadioButtons. I am getting some int value by the buttons. Now I want to pass these 2 values to some other class (not activity). The class is the game loop and I want to use this 2 values for diffrent level changes and other stuff. I am confused about that how