[android-beginners] Re: how to create welcome screen 4 my Game

2008-05-10 Thread Delirio
Hi, Hi, you may try to override the onTouchEvent and onKeyDown Activity methods (it worked for me) 2008/5/10 rabbia <[EMAIL PROTECTED]>: > > Hi, > i want to make game like all games in mobile when we start the then a > welcome screen opens first which ask "press any key to continue"...i > want

[android-beginners] Re: About accessing text file in android

2008-05-09 Thread Delirio
Ok, then you may try to store "judy.txt" in the assets folder (assets/judy.txt"). this.getAssets().open("judy.txt") should work 2008/5/9 Analdin Judy <[EMAIL PROTECTED]>: > Hi, > > I use the below coding, > > this.getAssets().open(path). > >till now i got the same exception "File not

[android-beginners] Re: About accessing text file in android

2008-05-09 Thread Delirio
Try this (just for reading): this.getResources().openRawResource(identifier); // if it's stored in the /res/raw folder or this.getAssets().open(path); //if it's stored in the /asstes folder 2008/5/9 Analdin Judy <[EMAIL PROTECTED]>: > I got "File not found exception".Where can i store the txt

[android-beginners] Re: I need a xml file

2008-04-17 Thread Delirio
Hi, this IDE will help you: http://www.droiddraw.org/ 2008/4/16, Analdin Judy <[EMAIL PROTECTED]>: > > Hi, > > > Can anybody give me the xml file for my below coding. > I need to display a surfaveview,EditText and 4 buttons > >1. mPreview = (SurfaceView) findViewById(R.id.surface)

[android-beginners] Re: Create a partially dynamic view

2008-04-11 Thread Delirio
Hi, Maybe you just need to include the following to your layout file: http://schemas.android.com/apk/res/android"; android:orientation="vertical" > Or if you want to customize the Adapter: http://code.google.com/android/samples/ApiDemos/src/com/google/android/samples/view/List6.html --

[android-beginners] Re: About accessing webpage

2008-04-11 Thread Delirio
Hi, read this thread http://groups.google.com/group/android-developers/browse_thread/thread/b542dd19a069c50c --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send emai