[android-beginners] Re: Convert framebuffer in video

2009-03-25 Thread Cartouche
Thanks a lot for your response, do you mean Android actually has not API to control the framebuffer, or it's really impossible to do what I want ? Cartouche. On 25 mar, 07:22, Dave Sparks wrote: > We have no plans to support this function in the framework. It's a > significant security risk (al

[android-beginners] Voting Is Open For The UC Berkeley Human Rights Center Mobile Challenge!

2009-03-25 Thread Alex Steed
Voting is open on the UC Berkeley Human Rights Center Mobile Challenge! >From now until Friday, March 27 at 3 p.m. PDT, you can show your support for your favorite projects by voting for them here: http://netsquared.org/hrc-ucb/vote A bit of background: The Human Rights Center is sponsoring a

[android-beginners] Talk through bluetooth.

2009-03-25 Thread aamir
I would like to know if it is possible to talk to nearby users with bluetooth.If not, is there any other way to talk to people nearby without using air time ( say for example using wireless networking) --~--~-~--~~~---~--~~ You received this message because you are

[android-beginners] Re: Talk through bluetooth.

2009-03-25 Thread Sena Gbeckor-Kove
The Bluetooth API is not currently part of the SDK. It will be in the future, it was removed for security reasons. S On 25 Mar 2009, at 16:49, aamir wrote: > > I would like to know if it is possible to talk to nearby users with > bluetooth.If not, is there any other way to talk to people nea

[android-beginners] Re: How to show a dialog on top of another dialog in an activity

2009-03-25 Thread bubble.vnhan
Hihi, you found about how to use if the user entered information in some field and it doesn't validate you show dailog. But I want to correct method you have used. you should method show(). V.Nhan. protected Dialog onCreateDialog(int id) { return new AlertDialog.Builder(RegisterEvent.this)

[android-beginners] How can I see all of applications source on Eclipse?

2009-03-25 Thread Soon!
Hi guys! I downloaded android source using Git. However, I have no idea to use them on Eclipse. I'd like to develop android application based on original source such as AlarmClock, Calculator.. I'm not sure if it's possible.. I tried to move application's source files to Eclipse but they have A

[android-beginners] Any body has android VEN_18D1?

2009-03-25 Thread John777
Just wandering if any one has android phone VEN_18D1 Manufacturer : Google, Inc. Product : Android Sooner Info : 53531309d1035cc9 USB Version : 2.00 Product ID :VEN_18D1,DEV_DEED,PRT_00 Class : Vendor Specific Max. Packet Size : 64 bytes Max. Power :256 mA Open Pipes :6

[android-beginners] Grrrr "error: device not found"

2009-03-25 Thread John777
Hi, Sorry, I am kind of stuck figuring out why I cannot connect to the device. >From this mailing list, I can see a lot of people has the same problems too. Any one has any advice? The step that I try to follow http://osdir.com/ml/AndroidBeginners/2009-02/msg00415.html Error get "error: device

[android-beginners] Re: Trouble with HelloWorld

2009-03-25 Thread jmc
I had this issue earlier. Turned out to be the emulator was still loading (showing the android logo). Eventually the program popped up on the phone. Let it run for a minute, see what pops up. On Mar 23, 9:34 am, ml wrote: > I am having trouble with the hello world application. > My emulator star

[android-beginners] Reconnect adb while emulator is running

2009-03-25 Thread frank
Is there a way to reconnect the adb after an emulator has started. I am currently receiving the following error which kills adb: NetworkStateTracker( 49): initial network configuration NetworkStateTracker( 49): config changed:: before:interface eth0 state: link up NetworkStateTracker( 49):

[android-beginners] full screen without status bar

2009-03-25 Thread farmer_chs
just set the 'theme' attribute of your activity to @android:style/ Theme.Black.NoTitleBar.Fullscreen,Your activity display in real full screen now. I found this in the source of Android Camera. --~--~-~--~~~---~--~~ You received this message because you are subscr

[android-beginners] could not resolve android.view.View$OnClickListener

2009-03-25 Thread Jimmy Chu
Hi all, I tried out the tutorial code of different layout. When I have : import android.view.View$OnClickListener; Eclipse gives me an error msg of "The import android.view.View $OnClickListener" cannot be resolved. I believe Google had overridden the way library is imported using "$". So, ecl

[android-beginners] getting the system wallpapers, is it possible?

2009-03-25 Thread Reynolds
Please bear with me as I'm still grasping the SDK... I just want to ask. I wanted to get all the wallpapers (those that are built-in with Android phone), and copy/save it, or perhaps display it on my app. Sort of a wallpaper gallery that merges both the built-in wallpaper and the custom ones that

[android-beginners] Hi Dear all

2009-03-25 Thread Sandy Nurgakan
--~--~-~--~~~---~--~~ 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@googlegroups.com To unsubscribe from this group, send email to android-beginners-unsubs

[android-beginners] Android?

2009-03-25 Thread robert.ba...@student.curtin.edu.au
Android? Never heard of it. Is it some sort of programming language? Atm i'm simultaneously learning java, C, C++, C#, and Uscript. How much can it hurt to learn one more. :) if its similar to these languages then it should be relatively easy to pick up. --~--~-~--~~~

[android-beginners] Re: Android?

2009-03-25 Thread Gavin Aiken
That's an interesting thought and I commend your ambition. Android is a platform rather than a language, an operating system for mobile phones. There are plenty of resources online for you to learn more. If you develop applications, this list is for said developers, then you will program in Java.

[android-beginners] Re: Reconnect adb while emulator is running

2009-03-25 Thread David Turner
Strange, which build are you using exactly ? For the record, adb won't be able to connect to the emulator if the emulated ethernet interface is down. On Tue, Mar 24, 2009 at 8:59 PM, frank wrote: > > Is there a way to reconnect the adb after an emulator has started. I > am currently receiving t

[android-beginners] Re: Android?

2009-03-25 Thread Mario Enriquez
Android is the operating system for t mobile G1 phones and apparently if you want to create a G1 app, you have to use the android sdk with eclipse. Other than that, c++ isn't really necessary for android. On Mar 25, 2009 9:42 AM, "robert.ba...@student.curtin.edu.au" < robert.ba...@student.curtin.e

[android-beginners] Re: How do I set the value of an EditText

2009-03-25 Thread Lovedumplingx
So I see the NullPointer Exception as a good starting point but I'm still perplexed. I created a new project just for testing. And I can't get this to work: package com.test; import android.app.Activity; import android.os.Bundle; import android.widget.EditText; public class main extends Activi

[android-beginners] Re: How do I set the value of an EditText

2009-03-25 Thread Mark Murphy
Lovedumplingx wrote: > So I see the NullPointer Exception as a good starting point but I'm > still perplexed. > > I created a new project just for testing. And I can't get this to > work: > > package com.test; > > import android.app.Activity; > import android.os.Bundle; > import android.widget.

[android-beginners] Re: Convert framebuffer in video

2009-03-25 Thread Dave Sparks
The frame buffer is only accessible to a privileged process. We have no plans to expose an API to allow applications to access the frame buffer. On Mar 25, 12:42 am, Cartouche wrote: > Thanks a lot for your response, > do you mean Android actually has not API to control the framebuffer, > or it'

[android-beginners] Re: Convert framebuffer in video

2009-03-25 Thread Cartouche
Ok Dave, thanks a lot for your help. Cartouche. On 25 mar, 21:59, Dave Sparks wrote: > The frame buffer is only accessible to a privileged process. We have > no plans to expose an API to allow applications to access the frame > buffer. > > On Mar 25, 12:42 am, Cartouche wrote: > > > Thanks a l

[android-beginners] Data Picker Example

2009-03-25 Thread Lucius Fox
Hi, Can you please tell me where I can find an android data picker and timer picker example? Thank you. --~--~-~--~~~---~--~~ 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] Re: Data Picker Example

2009-03-25 Thread Mark Murphy
Lucius Fox wrote: > Hi, > > Can you please tell me where I can find an android data picker and > timer picker example? > > Thank you. > > > -- Mark Murphy (a Commons Guy) http://commonsware.com Warescription: Three Android Books, Plus Updates, $35/Year --~--~-~--~~~

[android-beginners] Re: Data Picker Example

2009-03-25 Thread Mark Murphy
Phooey -- bumped the Send button too soon... Lucius Fox wrote: > Can you please tell me where I can find an android data picker and > timer picker example? http://developer.android.com/guide/tutorials/views/hello-datepicker.html http://developer.android.com/guide/tutorials/views/hello-timepicke