[android-beginners] Re: android file permissions on the G1

2008-11-17 Thread Brian Manning
On Sun, Nov 16, 2008 at 7:14 PM, solid [EMAIL PROTECTED] wrote: I did a factory reset on my phone (clearing out the rom) this did not do anything to fix the problem. I would like to reformat my SD card. what format does the card need to be reformatted to FAT, as opposed to NTFS. My Mac

[android-beginners] Re: data encryption

2008-11-17 Thread Dennis Wilmsmann
Packages from javax.crypto and java.security are available in Android, so encryption sould be no problem. Have a look at this (old) example from SUN: http://java.sun.com/developer/technicalArticles/Security/AES/AES_v1.html Dennis On 15 Nov., 03:41, yakuza [EMAIL PROTECTED] wrote: Has there

[android-beginners] Re: java + android newbie! - help on saving data.

2008-11-17 Thread Dennis Wilmsmann
I'm currently using db4o instead of SQLite to store data. The usage of db4o is easy and quick to learn; the tutorials provide good sample code. http://www.db4o.com/android/ Dennis On 14 Nov., 19:01, moazzamk [EMAIL PROTECTED] wrote: You can also try storing it in a database. Here's a post I

[android-beginners] Simple Table Formatting

2008-11-17 Thread Siva
Hi, Is there a way to have a simple table display in the UI? I see that TableLayout does not support borders. I would like to have borders across rows and columns. Any help? Thanks, Siva G --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-beginners] adb failed to start

2008-11-17 Thread Henry Hu
If I use ./adb server , then it says ADB server didn't ACK * could not start server * but if I use ./adb nodaemon server, then everything works fine. So what's the difference? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[android-beginners] Push email has stopped

2008-11-17 Thread andrew baisley
I have the G1 on T-mobile UK. I setup the alternative email client with my Gmail account to see how it worked. It wasn't as good as the native Google Mail app so I deleted my account. But now my Google Mail program has stopped working properly. It won't download new messages or send either. And

[android-beginners] Re: Using RMI in Android

2008-11-17 Thread [EMAIL PROTECTED]
Try GNU Classpath RMI, that one is also fully functional and interoperable. At least you will not end up in calling the native code with no source. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners

[android-beginners] Re: Problem with Intent and Activity

2008-11-17 Thread [EMAIL PROTECTED]
Thanks, I checked APIDemos and got this line in manifest file: category android:name=android.intent.category.SAMPLE_CODE / I am thinking abt that but not sure.So thank for the hint. Bye. On Nov 16, 2:47 pm, Mark Murphy [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: Hi, I am facing one

[android-beginners] Re: java + android newbie! - help on saving data.

2008-11-17 Thread [EMAIL PROTECTED]
Thanks for both replies :) I will check out both options and post some feedback. On Nov 17, 10:21 am, Dennis Wilmsmann [EMAIL PROTECTED] wrote: I'm currently using db4o instead of SQLite to store data. The usage of db4o is easy and quick to learn; the tutorials provide good sample code.

[android-beginners] Re: Problem with Intent and Activity

2008-11-17 Thread [EMAIL PROTECTED]
This line: action android:name=android.intent.action.MAIN / defines which activity in the application is the 'main' activity - in other words, which is the activity (or screen) that will load up first. In an application, there should only be one main activity. On Nov 17, 5:38 pm, [EMAIL

[android-beginners] Re: Transfer MP3s to SD with Bluetooth

2008-11-17 Thread Kory
Is it possible? On Nov 16, 9:42 pm, Kory [EMAIL PROTECTED] wrote: Hi, If I have a bluetooth dongle on my pc can I transfer MP3s to my SD card wirelessly? Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[android-beginners] Re: Transfer MP3s to SD with Bluetooth

2008-11-17 Thread Mark Murphy
Kory wrote: Is it possible? On Nov 16, 9:42 pm, Kory [EMAIL PROTECTED] wrote: Hi, If I have a bluetooth dongle on my pc can I transfer MP3s to my SD card wirelessly? If you want a definitive answer, this is a question for T-Mobile technical support, as you are asking an end-user

[android-beginners] Re: Simple Table Formatting

2008-11-17 Thread Sunit Katkar
Look at the xml attributes for the TableLayout widget. They might help. If you want just horizontal lines then you can insert a View.The technique is explained here in my tutorial http://www.vidyut.com/sunit/android/ - Sunit On Mon, Nov 17, 2008 at 6:33 AM, Siva [EMAIL PROTECTED] wrote: Hi,

[android-beginners] Usage of Radio Group and radio Button

2008-11-17 Thread [EMAIL PROTECTED]
Hi, I m using RadioGroup and RadioButton in my UI. I am displaying 5 radio buttons and want to selecet one. I get the UI and I m diplaying five levels for my game. I am not sure that how can I read that back in the program? Means if user select first radio button, I want to change the level value

[android-beginners] Re: Usage of Radio Group and radio Button

2008-11-17 Thread Mark Murphy
I confess that I do not completely understand the nature of your questions, but if I am correct, the following API methods in the SDK may help: [EMAIL PROTECTED] wrote: I am not sure that how can I read that back in the program? RadioGroup#getCheckedRadioButtonId() if user makes one