Re: [android-beginners] Source code

2010-07-20 Thread Rogério de Souza Moraes
You can get the source from http://source.android.com. Next time google a little bit more and you will find out the answer. Regards, Rogerio 2010/7/20 Mark Murphy mmur...@commonsware.com On Tue, Jul 20, 2010 at 3:20 PM, kypriakos demet...@ece.neu.edu wrote: is the Android 2.1 or 2.2

Re: [android-beginners] Cross compilation error

2010-05-28 Thread Rogério de Souza Moraes
Hi Arun, Did you see this site http://android-tricks.blogspot.com/2009/02/hello-world-c-program-on-using-android.html ? This tells you to do not use the option *-nostdlib*. Try to compile without this option. Regards, Rogerio 2010/5/27 தங்கமணி அருண் thangam.ar...@gmail.com Hi, I am trying

Re: [android-beginners] play external .mp3 file

2010-04-22 Thread Rogério de Souza Moraes
Hi Victor, take a look at this tutorial. I think this is what you want. http://blog.pocketjourney.com/2008/04/04/tutorial-custom-media-streaming-for-androids-mediaplayer/ Regards, Rogerio 2010/4/22 Victor Hugo vhs...@gmail.com Hi people, im playing a mp3 file on my emulador using that

Re: [android-beginners] Re: Launch other activity on pressing the on-screen camera/camcorder button?

2010-02-19 Thread Rogério de Souza Moraes
KEY_CAMERA instead. I might need a little more understanding of what you tring to say... thanks for ur help Abhi On Feb 16, 6:54 pm, Rogério de Souza Moraes rogerio.so...@gmail.com wrote: Hi Abhi, the code that I sent to you, you tried to use it inside your appplication, or you

Re: [android-beginners] Re: Launch other activity on pressing the on-screen camera/camcorder button?

2010-02-16 Thread Rogério de Souza Moraes
, Rogério de Souza Moraes rogerio.so...@gmail.com wrote: Hi Abhi, can you paste the code? Maybe I can help better with more information. Regards, Rogerio 2010/2/10 Abhi abhishek.r.sha...@gmail.com Tried this... doesn't work :( On Feb 5, 1:36 pm, Abhi abhishek.r.sha

Re: [android-beginners] Catching and changing a keycode.

2010-02-10 Thread Rogério de Souza Moraes
Hi Ryan, you can modify the behavior in android framework. You need to change the following files: base/core/res/res/values/attrs.xml base/core/java/android/view/KeyEvent.java in this files you can change the code of the keys to do what you want. Regards, Rogerio 2010/2/7 Ryan Rogers

Re: [android-beginners] Re: Launch other activity on pressing the on-screen camera/camcorder button?

2010-02-10 Thread Rogério de Souza Moraes
. Appreciate it. Abhi On Feb 5, 12:47 pm, Rogério de Souza Moraes rogerio.so...@gmail.com wrote: HiAbhi, it is possible. You can do like this: private class ExpandedDialog extends Dialog { ExpandedDialog(Context context) { super(context

Re: [android-beginners] Launch other activity on pressing the on-screen camera/camcorder button?

2010-02-05 Thread Rogério de Souza Moraes
Hi Abhi, it is possible. You can do like this: private class ExpandedDialog extends Dialog { ExpandedDialog(Context context) { super(context, com.android.internal.R.style.Theme_Light_NoTitleBar); } @Override public boolean

Re: [android-beginners] newbie problem

2010-02-04 Thread Rogério de Souza Moraes
Hi Motiur, Are you using eclipse? If so, you can use DDMS view to see what is avoiding you to run android in your machine. Regards, Rogerio 2010/2/3 Motiur Rahman motiur.rahm...@gmail.com Hi all I am new to Android . I installed everything as per android developers pre-requisites in my

Re: [android-beginners] Re: How to make a clickable region

2010-02-03 Thread Rogério de Souza Moraes
layout and i want to trigger an action when i tap certain region of the image. It`s something that i want to create a simple game. Your contribution for the keyboard made me curious =) Thanks for the help. On Feb 2, 5:50 pm, Rogério de Souza Moraes rogerio.so...@gmail.com wrote: Why do

Re: [android-beginners] How to make a clickable region

2010-02-02 Thread Rogério de Souza Moraes
Why do you want to do this? I am making something similar, but it is for the android plataform. It is a virtual keyboard area that simulates some hard buttons. Maybe I can help you if. Regards, Rogerio 2010/1/29 David Aragão davidara...@gmail.com Hi, There`s some way to create a clickable

[android-beginners] Enable virtual hard keys area in Android

2010-01-14 Thread Rogério de Souza Moraes
Anyone knows how to enable virtual hard keys area in Android? I saw that Android have support to it in the page http://developer.android.com/intl/fr/sdk/android-2.0.html, but I did not find how to enable it. Thanks! Rogerio -- You received this message because you are subscribed to the Google

Re: [android-beginners] Re: How to upload HelloAndroid.apk directly to HTC Hero

2010-01-14 Thread Rogério de Souza Moraes
Use adb to install it for you! Connect your phone to your computer. Execute the command bellow to list the devices you have connected to your computer: adb devices If your device was detected, use the command bellow to install your package : adb install your_package.apk 2010/1/14 Michael

Re: [android-beginners] Looking for some reading on the Android Framework

2010-01-13 Thread Rogério de Souza Moraes
Hi, at the moment I am studying about Android by the O'Reilly book Android Application Development. It's very well written and have good examples. 2010/1/6 Kevin Duffey andjar...@gmail.com http://commonsware.com/Android/ http://commonsware.com/Android/Best I've found. Join the forum, the