[android-developers] Bluetooth connection between Android - PC

2009-11-02 Thread AntoniMG
Hi developers, Is there any way to comunicate an android phone with a computer trough bluetooth? Ive made a server/client applicattion in Java using bluetooth, but i need to do the client in Android and i dont know how to start, I dont know even if is possible. Is there any way to do it? Is

[android-developers] Get the phone credentials to use Google Calendar API

2009-10-05 Thread AntoniMG
Hello, I want to make an application who write events in the google calendar based on informations that it gets. Ive achieved to make an applicattion that do this, but you have to introduce your gmail account and password every time, I want to know if theres any way to get it from the account

[android-developers] ProgressDialog on Oncreate method

2009-08-26 Thread AntoniMG
Hi, We are having some problems showing a ProgressDialog on a onCreate method (for example, when the app calculates some operations before starts). This is a example of what is our problem: public class dialog extends Activity { /** Called when the activity is first created. */ int res;

[android-developers] Re: ProgressDialog on Oncreate method

2009-08-26 Thread AntoniMG
I must sat that the dialog doenst appear until the Thread is finished because onCreate is not terminated, if we eliminate tv.setText(res) the dialog appears during 1 second, because is the last instruction of the metod(): On 26 ago, 16:13, AntoniMG tonio...@gmail.com wrote: Hi, We are having

[android-developers] Connect to a SQL Database

2009-07-07 Thread AntoniMG
Hi, Im triying to connect to a SQL Database with Android, this is my code: package com.example.conversor; import java.sql.*; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.EditText; [...] try {