[android-beginners] Re: Compile C on Android Phone

2009-10-03 Thread cookiemonsta
isn't NDK installed on your computer machine? doesn't that mean that the programs would be compiled on it i want something that would let me write programs on the phone, while on the go. hehe... i am not even sure if thats possible with the android, but am hoping that there is something that

[android-beginners] Issue while encapsulating a TableLayout in a ScrollView.

2009-10-03 Thread Android Development
Hello everyone, When i encapsulate a table layout in a scroll view, i am unable to see the vertical scroller on the screen (that the user will hold and drag to actually scroll). What am i doing wrong ? The page i am trying to draw is a configuration page, where i need to take user input in a

[android-beginners] Re: [android-beginners]

2009-10-03 Thread Sean Hodges
On Thu, Oct 1, 2009 at 10:53 AM, saurabh sinha saurso...@gmail.com wrote: somebody tell me what is use of onBind in service http://lmgtfy.com/?q=android+service+onBind --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[android-beginners] Re: [android-beginners]

2009-10-03 Thread Android Development
allows you to bind to an already running service. On Sat, Oct 3, 2009 at 2:14 PM, Sean Hodges seanhodge...@googlemail.comwrote: On Thu, Oct 1, 2009 at 10:53 AM, saurabh sinha saurso...@gmail.com wrote: somebody tell me what is use of onBind in service

[android-beginners] Re: A new Android language?

2009-10-03 Thread cookiemonsta
i would love to follow this and get updates on how the thing is progressing. i've been searching all over for a compiler which would let me write and compile C/C++ programs on my android phone. good luck with your project :D On Oct 3, 6:43 am, niksbin niks...@gmail.com wrote: Thanks.  I will

[android-beginners] Re: A new Android language?

2009-10-03 Thread niksbin
i would love to follow this and get updates on how the thing is progressing. Sure, no problem. Thanks. Sincerely, Nikhil Kulkarni On Oct 3, 6:14 am, cookiemonsta mohamed.suh...@gmail.com wrote: i would love to follow this and get updates on how the thing is progressing. i've been

[android-beginners] Re: sdcard mounted ok, but get Unable to open trace file '/sdcard/x.trace, why?

2009-10-03 Thread javahollic
Thanks, that was what was needed, I can now turn the page! On Sep 29, 7:23 pm, fadden fad...@android.com wrote: On Sep 26, 10:57 am, javahollic javahol...@gmail.com wrote: Using x86_64/EclipseGalileo/ADT0.9.3/SDK1.6r1,  here is the use case: [...] huh? how does /sdcard get a permission of

[android-beginners] Notepad Tutorial and sqlite3

2009-10-03 Thread gmseed
Hi Just worked my way through the Android Notepad v1 tutorial and when the emulator is running I thought I query the database: ./adb -s emulator-5554 shell # sqlite3 /data/data/com.android.demo.notepad1.Notepadv1/databases/ notes.db SQLite version 3.5.9 Enter .help for instructions sqlite

[android-beginners] Re: Compile C on Android Phone

2009-10-03 Thread Chris Stratton
On Oct 3, 5:18 am, Sean Hodges seanhodge...@googlemail.com wrote: As far as I'm aware, no. There is no native C compiler available for the stock Android platform. To get that level of access to your device, you'd need to root the phone and cross-compile a tool-chain for it. Rooting the phone

[android-beginners] Re: language

2009-10-03 Thread midtoad
get MoreLocale in the Market. S On Sep 26, 12:48 pm, Arlen arle...@gmail.com wrote: I would like to use MyTouch to surf Farsi web sites but it can not display persian characters. how can i add farsi language on android ? Thankyou --~--~-~--~~~---~--~~ You

[android-beginners] Re: Notepad Tutorial and sqlite3

2009-10-03 Thread Emre A. Yavuz
Hi Graham, By executing the following command # sqlite3 /data/data/com.android.demo.notepad1.Notepadv1/databases/notes.db you've probably created a new database called notes and therefore it's not surprising that it doesn't contain any of the tables you look for. Try # sqlite3

[android-beginners] Re: How to receive callback when press and hold button for a longer time.

2009-10-03 Thread Shude Zheng
Hi, Alexander, Thank you. I have not describe the question clearly. I want change the channel by pressing button. But press button once and the callback is called once. The channel only one channel up. But I want to change more channels. So I press the button and hold it. The callback will call

[android-beginners] How to play pico-ttx in sdk1,6

2009-10-03 Thread Shude Zheng
Hi, I updated my eclipse to sdk1.6. The emulator was working. I download the PicoLangInstaller.apk. Use adb install $apk to install the Picoxx.apk. There was something in /adcard/pico. But I am unable to find anything that I can test the picotts. Can you tell me how to play the new feature of

[android-beginners] Re: Getting Surface from the View

2009-10-03 Thread surya Manyam
I want to perform Screen transitons of 2 differnt Applications like from the Menu Screen to Media Player or camera Apllication. as per my understanding views under 1 activity we are able to Perform Trasformations transitions(From the Settings to Display Setting Screen). But Differnt Views

[android-beginners] onCreate() and current tab

2009-10-03 Thread Jeffrey Blattman
i have a tab host that saves the last selected tab into a preference, and loads it again in onCreate(). i add the tabs to the tab host through an intent, such as, mTabHost.addTab(mTabHost.newTabSpec(closest).setIndicator(Closest,

[android-beginners] Re: onCreate() and current tab

2009-10-03 Thread Jeffrey Blattman
actually, i was mistaken. onCreate() for all the added tabs is called. considering, it seems less likely that there's a solution ... i'd like to only call onCreate() for the selected tab. On Sat, Oct 3, 2009 at 9:43 PM, Jeffrey Blattman jeffrey.blatt...@gmail.com wrote: i have a tab host that