[android-beginners] how to do call interception

2009-11-30 Thread Dongjoon Lee
Hello all.

Please give me some advice after you read the message below.

Originally, the purpose of a call button is making a call through
network such as GSM, CDMA network etc.
But I want to give a option to users to choose VoIP call or general
call when they push call button.
Is it possible? Somebody told me it might be possible if I could
intercept call event. But I don't understand exactly.

Help, please. :)

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


[android-beginners] why Auto Redial option is not there in Android?

2009-11-30 Thread pushkar bandi
Hi,

Could somebody explain me why Auto Redial option is not there in Android?

If the option is there, then how to work with redial in android.

Thanks in advance.

Regards
Pushkar Setty

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

[android-beginners] Re: getting my current location

2009-11-30 Thread Neilz
Yes, the first attempt at grabbing a location is often null. You need
to add a listener (onLocationChanged) and take it from there.

On Nov 29, 7:03 pm, Lance Nanek lna...@gmail.com wrote:
 If you use the Logcat view in Eclipse or the adb logcat command from
 the SDK on the command line you can see why your app is crashing. In
 this case it is probably that getLastKnownLocation is returning null,
 which it can as per the 
 documentation:http://developer.android.com/intl/zh-CN/reference/android/location/Lo...

 You can't call methods like getLatitude on null. Look at the
 requestLocationUpdates methods for a way to get locations that
 actually starts up the location provider.

 I remember in earlier SDKs you could add mock locations by putting a
 file somewhere on the phone. I don't think that is supported any more.
 See the note above the Providing Mock Location Data heading 
 here:http://developer.android.com/intl/zh-CN/guide/topics/location/index.html

 On Nov 28, 12:03 pm, redants1972 redants1...@googlemail.com wrote:

  Thanks for the advice. I am still having trouble however.

  When I add the debug line as advised, the app falls over and as far as
  I can tell, 'location' is coming out as null.

  If I comment out the log.i code then it works ok. So it seems to me
  that there is something wrong with the way I am trying to get my
  coordinates.
  I'm not sure what I should be expecting when I load the KML file, as
  nothing appears in the panel. It's not clear to me how the loading
  of the KML file or manual coordinates actually link to the line -

  Location location = locationManager.getLastKnownLocation(gps);

  I thought the gps part referred to the folder location under C:
  \Program Files\android-sdk-windows-1.6_r1\tools\data\misc\location,
  but I could have got that wrong.

  Any further advice would be greatly appreciated. I think one of the
  issues here is my inexperience in using the IDE and the way in which
  run time errors can be viewed and trapped.

  Cheers,

  On Nov 27, 4:55 pm, Neilz neilhorn...@googlemail.com wrote:

   Hi. As you are using Eclipse, you can use the Android plug in, and the
   build in Emulator Control, to load up your KML file and manually send
   location updates to the emulator. You find it at Window-Show View-

   Other-Android-Emulator Control. That should get you going.

   To debug:

   import android.util.Log;

   Log.i(MyCLassName, Lat:  + location.getLatitude() +  Long:  +
   location.getLongitude());

   Hope this helps.

   On Nov 24, 9:38 pm, redants1972 redants1...@googlemail.com wrote:

I am trying to produce a mock location provider by using an example
kml file grabbed from somewhere (where I cannot remember now). Anyway
I think I also need a properties file but I'm not sure where this goes
and what it is called.

The code I am using is -

locationManager = (LocationManager)getSystemService
(Context.LOCATION_SERVICE);
Location location = locationManager.getLastKnownLocation(gps);

double lat = location.getLatitude();
double lng = location.getLongitude();

It seems that I am not getting anything back from the kml file, but as
a beginner to Android and Java I am struggling to debug the problem. I
am using eclipse Ganymede.

What I need really is some pointers on the following:

1. How do I debug so that I can see the values of Location.getLatitude
() and location.getLongitude(); ?
2. I am referencing gps as my provider and have a kml file located
at C:\Program Files\android-sdk-windows-1.6_r1\tools\data\misc\location
\gps . Is this correct?
3. How do I create the properties file?
4. Any other advice would be greatly appreciated.

I have scoured the net for answers but nothing seems to fit what I am
after. I have also tried to go to 
URLhttp://code.google.com/android/toolbox/apis/lbs.html
but it redirects me tohttp://developer.android.com/guide/index.html

Thanks in advance,



-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


[android-beginners] can't launch intent + debug problem, Source not found

2009-11-30 Thread Marton Kodok
I am trying to launch an activity from my main activity

I get a debug break:
Thread [3 main] (Suspended (exception RuntimeException))
ActivityThread.performLaunchActivity(ActivityThread$ActivityRecord, Intent)
line: 2401
ActivityThread.handleLaunchActivity(ActivityThread$ActivityRecord, Intent)
line: 2417
ActivityThread.access$2100(ActivityThread, ActivityThread$ActivityRecord,
Intent) line: 116
ActivityThread$H.handleMessage(Message) line: 1794
ActivityThread$H(Handler).dispatchMessage(Message) line: 99
Looper.loop() line: 123
ActivityThread.main(String[]) line: 4203
Method.invokeNative(Object, Object[], Class, Class[], Class, int, boolean)
line: not available [native method]
Method.invoke(Object, Object...) line: 521
ZygoteInit$MethodAndArgsCaller.run() line: 791
ZygoteInit.main(String[]) line: 549
NativeStart.main(String[]) line: not available [native method]

and the magical:
Source not found.

How can I see which line is the problem?

I have Boot and Home activities.
activity android:name=.Boot
  android:label=@string/app_name
intent-filter
action android:name=android.intent.action.MAIN /
category android:name=android.intent.category.LAUNCHER /
/intent-filter
/activity
activity android:name=.Home
  android:label=@string/app_name
/activity

in Boot I have

public class Boot extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
startActivity(new Intent(this, Home.class));
}
}

public class Home extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}

what I am doing wrong?
-- 
Márton

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

[android-beginners] Fwd: Muito bom... Injustiça da lingua portuguesa!

2009-11-30 Thread Allan Rogge
Não sou de encaminhar e-mail...

mas esse é muito loko..

hauhhuauhauhauhahu


detalhe que esse e-mail foi *encaminhado... *portanto não sei de nada.. hehe

【アランロゲ】


-- Forwarded message --
From: Allan Rogge allan.ro...@sptrans.com.br
Date: 2009/11/30
Subject: ENC: Muito bom... Injustiça da lingua portuguesa!
To: pc.alla...@gmail.com





 --

*De:* Fernando Souza [mailto:fernando.so...@sptrans.com.br]
*Enviada em:* sexta-feira, 27 de novembro de 2009 14:27
*Para:* 'Everton Silva'
*Cc:* 'danielcosta'; 'Chinho Moreno'; erikofra...@globo.com; 'Felipe
Ribeiro'; david.sang...@sptrans.com.br; aline.here...@sptrans.com.br;
allan.ro...@sptrans.com.br
*Assunto:* RES: Muito bom... Injustiça da lingua portuguesa!













 *INJUSTIÇAS
DA LÍNGUA PORTUGUESA*

*
**
**A Sociedade Feminina Brasileira se queixa do tratamento machista existente
**
na gramática portuguesa, e com
razão...
Vejam os exemplos :**

**Cão**.melhor amigo do homem.**
**Cadela**..puta.**

**Vagabundo**...homem que não faz nada.**
**Vagabunda**.puta. **

**Touro**homem forte.**
**Vaca**puta.**

**Pistoleiro**...homem que mata pessoas.**
**Pistoleira**.puta.**

**Aventureiro**..homem que se arrisca, viajante, desbravador.*

*Aventureira**.puta.**
**
**Garoto de rua**.menino pobre, que vive na rua, **
um coitado.
**Garota de rua**..puta.**

**Homem da vida**pessoa letrada pela sabedoria adquirida ao longo da
vida.**
**Mulher da vida**...puta.**

**O Galinha**...o 'bonzão', que traça todas.**
 **A Galinha**...puta.**
**
**Tiozinho**irmão mais novo do pai.**
**Tiazinha**..puta.** **

**Feiticeiro**...conhecedor de alquimias.**
**Feiticeira**..puta.**

**Roberto Jefferson, Zé Dirceu, Maluf, ACM, Jader **
Barbalho, Eurico Miranda,
Renan Calheiros, Lula, Delúbio**.políticos.** **

**A mãe deles**...putas.**

E pra finalizar...
**Puto**.nervoso, irritado, bravo.**
**Puta**puta.*

*
**Depois de ler este e.mail:**
**Homem**vai sorrir.**
**Mulher**...vai ficar puta.*








Nenhum vírus encontrado nessa mensagem recebida.
Verificado por AVG - www.avgbrasil.com.br
Versão: 8.5.426 / Banco de dados de vírus: 270.14.84/2530 - Data de
Lançamento: 11/27/09 07:58:00

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

[android-beginners] Re: Permission denied: connect

2009-11-30 Thread ekwang
Hi,
After run SDK Manager, go to Settings - Misc area and check this
force https://... sources to be fetched using http://...;
It will process solution of Nithin automatically.

On 11월29일, 오후1시21분, Mark treeline2...@gmail.com wrote:
 In using the Android SDK and AVD Manager, I'm not able to access the
 repository.xml file and consequently don't see any packages.

 https://dl-ssl.google.com/android/repository/repository.xml

 I can access this URL via the web from the system via a browser, but
 when I attempt from the Manager I get this error.

 Failed to fetch 
 URLhttps://dl-ssl.google.com/android/repository/repository.xml,
 reason: Permission denied: connect

 I've turned down the Micosoft firewall and still get the same error. I
 did look at the FAQs and ran a search on the error - but nothing came
 back - I feel like I must be missing something obvious. There does not
 seem to be any other way of updating packages except through this
 fast and easy method. If you know what the problem is or have some
 quick general direction on this I'd appreciate it. Thanks.

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners]

2009-11-30 Thread Justin Anderson
What?

--
There are only 10 types of people in the world...
Those who know binary and those who don't.
--


On Thu, Nov 26, 2009 at 7:04 PM, saurabh sinha saurso...@gmail.com wrote:

 I need to know the reason I had interview in android I was asked
 why you choose android platform

 plz send me reply

 --
 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+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

Re: [android-beginners] Creating a dialog from a Service

2009-11-30 Thread Justin Anderson
Create an activity that does nothing but display a dialog and start the
activity from the service.

* Having searched about this I know the normal thing to do is to display
 a status bar notification, however I want to interrupt the user and
 stop them doing whatever they currently are.  Is there any way to do
 this?  I know its considered bad programming, but it won't be as
 intrusive as it sounds!
*
I would seriously consider using the status bar notification.  If I
installed an app and it did that to me it would be uninstalled immediately.

--
There are only 10 types of people in the world...
Those who know binary and those who don't.
--


On Wed, Nov 25, 2009 at 3:56 AM, Tom Reay tomfr...@gmail.com wrote:

 Hi,
 Now I know that a dialog has to be started from an activity.  However
 I have a service running and I want it to be able to display a
 dialog.

 Having searched about this I know the normal thing to do is to display
 a status bar notification, however I want to interrupt the user and
 stop them doing whatever they currently are.  Is there any way to do
 this?  I know its considered bad programming, but it won't be as
 intrusive as it sounds!
 Thanks
 Tom Reay

 --
 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+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

Re: [android-beginners] Why R,java file is missing from Android open source apps

2009-11-30 Thread Justin Anderson
R.java is a file that gets generated when you compile an Android
application.

--
There are only 10 types of people in the world...
Those who know binary and those who don't.
--


On Thu, Nov 26, 2009 at 8:08 PM, ChilLfiRe kma...@gmail.com wrote:

 I am trying to Import open source Android app using Google and SVN
 plugin for Eclipse but it seems all of them are missing the R.Java
 file. I couldn't figure out how to generate R.java file or why is it
 missing?

 I have tried Importing the project as Android Project and eclipse
 seems to create the gen folder but it remains empty.

 Any help will be appreciated.

 Thanks

 --
 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+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

[android-beginners] any good tutorial for database stuff

2009-11-30 Thread Marton Kodok
I am wondering if there is out there any good tutorial about databases on
Android.

I am looking for
a) how to handle connect in global way (eg: static class)
(init-create/update schema)
b) how to handle database updates, versioning
c) how to prepare queries
d) database encryption
e) and maybe some writings abouts db sync process

-- 
Márton

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

[android-beginners] how to create this layout

2009-11-30 Thread Marton Kodok
How to create this layout?

http://img300.imageshack.us/img300/7316/sepm8dr309c7qsuwd6bluxq.png

Thank you.

[image: http://img300.imageshack.us/img300/7316/sepm8dr309c7qsuwd6bluxq.png]

-- 
Márton

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

Re: [android-beginners] how to create this layout

2009-11-30 Thread Justin Anderson
Read the docs and look at some of the demos to get some ideas...

Other people aren't going to do the work for you.  You need to get your
hands dirty and do some work.  When you get stuck with a specific problem,
show what you have done and ask for help...

Otherwise you will not get any answers

Thanks,
Justin

--
There are only 10 types of people in the world...
Those who know binary and those who don't.
--


On Mon, Nov 30, 2009 at 11:42 AM, Marton Kodok pentiu...@gmail.com wrote:

 How to create this layout?

 http://img300.imageshack.us/img300/7316/sepm8dr309c7qsuwd6bluxq.png

 Thank you.

 [image:
 http://img300.imageshack.us/img300/7316/sepm8dr309c7qsuwd6bluxq.png]

 --
 Márton

 --
 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+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

Re: [android-beginners] how to create this layout

2009-11-30 Thread Marton Kodok
Sorry, you have a point.

I have problems with the textview on the right handside, those two textviews
on the same line
one on the left, the other on the right.

2009/11/30 Justin Anderson janderson@gmail.com

 Read the docs and look at some of the demos to get some ideas...

 Other people aren't going to do the work for you.  You need to get your
 hands dirty and do some work.  When you get stuck with a specific problem,
 show what you have done and ask for help...

 Otherwise you will not get any answers

 Thanks,
 Justin

 --
 There are only 10 types of people in the world...
 Those who know binary and those who don't.
 --


 On Mon, Nov 30, 2009 at 11:42 AM, Marton Kodok pentiu...@gmail.comwrote:

 How to create this layout?

 http://img300.imageshack.us/img300/7316/sepm8dr309c7qsuwd6bluxq.png

 Thank you.

 [image:
 http://img300.imageshack.us/img300/7316/sepm8dr309c7qsuwd6bluxq.png]

 --
 Márton

 --
 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+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en


  --
 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+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en




-- 
Márton

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

Re: [android-beginners] can't launch intent + debug problem, Source not found

2009-11-30 Thread Justin Anderson
In my experience a Source not found problem is usually due to a null
pointer exception, although I am sure there can be other causes as well.

Can you post the logcat info?  That will generally give the specific error
you are encountering...

Thanks,
Justin

--
There are only 10 types of people in the world...
Those who know binary and those who don't.
--


On Mon, Nov 30, 2009 at 6:00 AM, Marton Kodok pentiu...@gmail.com wrote:

 I am trying to launch an activity from my main activity

 I get a debug break:
 Thread [3 main] (Suspended (exception RuntimeException))
  ActivityThread.performLaunchActivity(ActivityThread$ActivityRecord,
 Intent) line: 2401
  ActivityThread.handleLaunchActivity(ActivityThread$ActivityRecord,
 Intent) line: 2417
 ActivityThread.access$2100(ActivityThread, ActivityThread$ActivityRecord,
 Intent) line: 116
  ActivityThread$H.handleMessage(Message) line: 1794
 ActivityThread$H(Handler).dispatchMessage(Message) line: 99
  Looper.loop() line: 123
 ActivityThread.main(String[]) line: 4203
  Method.invokeNative(Object, Object[], Class, Class[], Class, int,
 boolean) line: not available [native method]
  Method.invoke(Object, Object...) line: 521
 ZygoteInit$MethodAndArgsCaller.run() line: 791
  ZygoteInit.main(String[]) line: 549
 NativeStart.main(String[]) line: not available [native method]

 and the magical:
 Source not found.

 How can I see which line is the problem?

 I have Boot and Home activities.
 activity android:name=.Boot
   android:label=@string/app_name
 intent-filter
 action android:name=android.intent.action.MAIN /
 category android:name=android.intent.category.LAUNCHER
 /
 /intent-filter
 /activity
 activity android:name=.Home
   android:label=@string/app_name
 /activity

 in Boot I have

 public class Boot extends Activity {
 /** Called when the activity is first created. */
 @Override
 public void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 startActivity(new Intent(this, Home.class));
 }
 }

 public class Home extends Activity {
 /** Called when the activity is first created. */
 @Override
 public void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.main);
 }
 }

 what I am doing wrong?
 --
 Márton

 --
 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+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

Re: [android-beginners] can't launch intent + debug problem, Source not found

2009-11-30 Thread Marton Kodok
11-30 20:05:04.604: ERROR/vold(538): Error opening switch name path
'/sys/class/switch/test2' (No such file or directory)
11-30 20:05:04.604: ERROR/vold(538): Error bootstrapping switch
'/sys/class/switch/test2' (No such file or directory)
11-30 20:05:04.604: ERROR/vold(538): Error opening switch name path
'/sys/class/switch/test' (No such file or directory)
11-30 20:05:04.604: ERROR/vold(538): Error bootstrapping switch
'/sys/class/switch/test' (No such file or directory)
11-30 20:05:28.518: ERROR/MemoryHeapBase(567): error opening /dev/pmem: No
such file or directory
11-30 20:05:28.524: ERROR/SurfaceFlinger(567): Couldn't open
/sys/power/wait_for_fb_sleep or /sys/power/wait_for_fb_wake
11-30 20:05:28.724: ERROR/libEGL(567): couldn't load libhgl.so library
(Cannot load library: load_library[984]: Library 'libhgl.so' not found)
11-30 20:05:30.284: ERROR/libEGL(582): couldn't load libhgl.so library
(Cannot load library: load_library[984]: Library 'libhgl.so' not found)
11-30 20:05:38.354: ERROR/BatteryService(567): Could not open
'/sys/class/power_supply/usb/online'
11-30 20:05:38.374: ERROR/BatteryService(567): Could not open
'/sys/class/power_supply/battery/batt_vol'
11-30 20:05:38.374: ERROR/BatteryService(567): Could not open
'/sys/class/power_supply/battery/batt_temp'
11-30 20:05:39.214: ERROR/EventHub(567): could not get driver version for
/dev/input/mouse0, Not a typewriter
11-30 20:05:39.244: ERROR/EventHub(567): could not get driver version for
/dev/input/mice, Not a typewriter
11-30 20:05:39.434: ERROR/System(567): Failure starting core service
11-30 20:05:39.434: ERROR/System(567): java.lang.SecurityException
11-30 20:05:39.434: ERROR/System(567): at
android.os.BinderProxy.transact(Native Method)
11-30 20:05:39.434: ERROR/System(567): at
android.os.ServiceManagerProxy.addService(ServiceManagerNative.java:146)
11-30 20:05:39.434: ERROR/System(567): at
android.os.ServiceManager.addService(ServiceManager.java:72)
11-30 20:05:39.434: ERROR/System(567): at
com.android.server.ServerThread.run(SystemServer.java:162)
11-30 20:05:39.444: ERROR/AndroidRuntime(567): Crash logging skipped, no
checkin service
11-30 20:05:41.914: ERROR/LockPatternKeyguardView(567): Failed to bind to
GLS while checking for account
11-30 20:05:44.674: ERROR/jdwp(612): Failed sending req to debugger: Broken
pipe (-1 of 27)
11-30 20:05:44.744: ERROR/jdwp(612): Failed sending req to debugger: Broken
pipe (-1 of 27)
11-30 20:05:44.816: ERROR/jdwp(612): Failed sending reply to debugger:
Broken pipe
11-30 20:05:55.213: ERROR/ActivityThread(615): Failed to find provider info
for com.google.settings
11-30 20:05:55.273: ERROR/ActivityThread(615): Failed to find provider info
for com.google.settings
11-30 20:05:57.863: ERROR/vold(538): Cannot start volume '/sdcard' (volume
is not bound)
11-30 20:06:00.934: ERROR/ApplicationContext(567): Couldn't create directory
for SharedPreferences file shared_prefs/wallpaper-hints.xml
11-30 20:06:08.003: ERROR/AndroidRuntime(637): Uncaught handler: thread main
exiting due to uncaught exception
11-30 20:06:08.003: ERROR/AndroidRuntime(637): *** EXCEPTION IN SYSTEM
PROCESS.  System will crash.
11-30 20:06:08.234: ERROR/AndroidRuntime(637): java.lang.SecurityException:
Permission Denial: starting Intent { flg=0x1000 cmp=com.test1/.Boot }
from null (pid=-1, uid=-1) requires null
11-30 20:06:08.234: ERROR/AndroidRuntime(637): at
android.os.Parcel.readException(Parcel.java:1218)
11-30 20:06:08.234: ERROR/AndroidRuntime(637): at
android.os.Parcel.readException(Parcel.java:1206)
11-30 20:06:08.234: ERROR/AndroidRuntime(637): at
android.app.ActivityManagerProxy.startActivity(ActivityManagerNative.java:1149)
11-30 20:06:08.234: ERROR/AndroidRuntime(637): at
com.android.commands.am.Am.runStart(Am.java:202)
11-30 20:06:08.234: ERROR/AndroidRuntime(637): at
com.android.commands.am.Am.run(Am.java:76)
11-30 20:06:08.234: ERROR/AndroidRuntime(637): at
com.android.commands.am.Am.main(Am.java:54)
11-30 20:06:08.234: ERROR/AndroidRuntime(637): at
com.android.internal.os.RuntimeInit.finishInit(Native Method)
11-30 20:06:08.234: ERROR/AndroidRuntime(637): at
com.android.internal.os.RuntimeInit.main(RuntimeInit.java:186)
11-30 20:06:08.234: ERROR/AndroidRuntime(637): at
dalvik.system.NativeStart.main(Native Method)
11-30 20:06:08.503: ERROR/JavaBinder(637): Unknown binder error code.
0xfff7
11-30 20:06:08.503: ERROR/AndroidRuntime(637): Crash logging skipped, no
checkin service
11-30 20:06:11.884: ERROR/MediaPlayerService(542): Couldn't open fd for
content://settings/system/notification_sound
11-30 20:06:11.884: ERROR/MediaPlayer(567): Unable to to create media player
11-30 20:05:57.566: ERROR/ActivityThread(612): Failed to find provider info
for android.server.checkin
11-30 20:06:00.886: ERROR/ActivityThread(612): Failed to find provider info
for android.server.checkin
11-30 20:06:01.326: ERROR/ActivityThread(612): Failed to find provider info
for 

Re: [android-beginners] Can I update my Motoblur firmware 1.5 to the 2.0?

2009-11-30 Thread Justin Anderson
Only if you root your phone... otherwise the update needs to come from your
cell phone carrier
--
There are only 10 types of people in the world...
Those who know binary and those who don't.
--


On Sun, Nov 29, 2009 at 10:57 AM, placerex place...@gmail.com wrote:

 I want to know, i want to be updated.

 --
 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+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

Re: [android-beginners] how do you post to this group

2009-11-30 Thread Justin Anderson
It is there...  nobody has answered it yet.

--
There are only 10 types of people in the world...
Those who know binary and those who don't.
--


On Sat, Nov 28, 2009 at 3:10 PM, Areeda are...@gmail.com wrote:

 I'm sorry.  I asked a question about buttons containing only text a
 few days ago and it has yet to show up in the group.

 How do you post a question?

 Joe

 --
 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+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

Re: [android-beginners] How to make Big button (text)

2009-11-30 Thread Justin Anderson
I'm assuming your Motorola phone has the MotoBlur stuff?  Have you
downloaded their dev tools?


--
There are only 10 types of people in the world...
Those who know binary and those who don't.
--


On Thu, Nov 26, 2009 at 10:37 AM, Areeda are...@gmail.com wrote:

 I using eclipse to develop an app.  In eclipse I set the text size for
 a button and in the emulator they look as I expect much bigger than
 default.  But when I create the apk and load it into my Motorola Droid
 the text size looks like the default, no matter what I set it to in
 the project they are the same size.

 I'd appreciate any help in tracking down what I'm doing wrong.

 Joe

 --
 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+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

Re: [android-beginners] problem in running very first app

2009-11-30 Thread Justin Anderson
What does the logcat info say?

--
There are only 10 types of people in the world...
Those who know binary and those who don't.
--


On Fri, Nov 27, 2009 at 2:07 AM, Kalpana Kumari
kalpana.kumar...@gmail.comwrote:

 Hello
 anyone can help me in running my very first application.

 however Emulator is launched but nothing happened ..
 On the console following msgs came


 [2009-11-27 13:58:23 - MyFirstProject]--
 [2009-11-27 13:58:23 - MyFirstProject]Android Launch!
 [2009-11-27 13:58:23 - MyFirstProject]adb is running normally.
 [2009-11-27 13:58:23 - MyFirstProject]Performing
 myFirstProject.com.example.Hie activity launch
 [2009-11-27 13:58:23 - MyFirstProject]Automatic Target Mode: launching new
 emulator with compatible AVD 'my_avd1'
 [2009-11-27 13:58:24 - MyFirstProject]Launching a new emulator with Virtual
 Device 'my_avd1'
 [2009-11-27 13:58:38 - MyFirstProject]New emulator found: emulator-5554
 [2009-11-27 13:58:38 - MyFirstProject]Waiting for HOME
 ('android.process.acore') to be launched...
 [2009-11-27 14:00:00 - MyFirstProject]emulator-5554 disconnected!
 Cancelling 'myFirstProject.com.example.Hie activity launch'!

  --
 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+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

Re: [android-beginners] Newbie needs help Updating my ADP1

2009-11-30 Thread Justin Anderson
Unless you root your phone you can't update your phone to Android 2.0
You need to wait for your cell phone carrier to push the update to your
phone.

--
There are only 10 types of people in the world...
Those who know binary and those who don't.
--


On Fri, Nov 27, 2009 at 6:37 PM, roland boyd whitecone...@gmail.com wrote:

 How do I update my phone to the current 2.0? My current program is running
 on the 1.6. Any help would do. I've done downloaded the current sdk and all
 the other proper programs needed. Just need help to run the program.

 roland

 --
 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+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

Re: [android-beginners] Newbie needs help Updating my ADP1

2009-11-30 Thread Justin Anderson
Wait... I just noticed that you have the Dev Phone.  Ignore my last post.  I
don't have a Dev Phone so I can't help you.  Sorry! ;-)
--
There are only 10 types of people in the world...
Those who know binary and those who don't.
--


On Mon, Nov 30, 2009 at 12:08 PM, Justin Anderson
janderson@gmail.comwrote:

 Unless you root your phone you can't update your phone to Android 2.0
 You need to wait for your cell phone carrier to push the update to your
 phone.

 --
 There are only 10 types of people in the world...
 Those who know binary and those who don't.
 --



 On Fri, Nov 27, 2009 at 6:37 PM, roland boyd whitecone...@gmail.comwrote:

 How do I update my phone to the current 2.0? My current program is running
 on the 1.6. Any help would do. I've done downloaded the current sdk and all
 the other proper programs needed. Just need help to run the program.

 roland

 --
 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+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en




-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

Re: [android-beginners] change TextView Dynamically

2009-11-30 Thread Justin Anderson
Seriously, read the docs!!!

TextView.setText() should do the trick, which is easily found in the docs
here:
http://developer.android.com/reference/android/widget/TextView.html#setText%28java.lang.CharSequence%29

--
There are only 10 types of people in the world...
Those who know binary and those who don't.
--


On Fri, Nov 27, 2009 at 12:14 AM, Ben tijeshj...@gmail.com wrote:

 can  i change a TextView dynamically

 --
 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+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

Re: [android-beginners] please help me to do this task

2009-11-30 Thread Justin Anderson
People are not going to do the work for you...

You need to dive in and get your hands dirty and start coding yourself.
When you run into problems post what you have done and ask for specific
help.

This google group is for getting help, not free coding or work.

Thanks,
Justin

--
There are only 10 types of people in the world...
Those who know binary and those who don't.
--


On Fri, Nov 27, 2009 at 11:45 AM, aravind ayyapp...@gmail.com wrote:

 hai all i am a new bie of this android...


 can any one please help me to get over this task

 my task is simple that


 1)
   i hav the database of some questions and i retrieved and
 shown in emulator when i clicked that page it should read the data
 (means hears the pronounciation of the words which are present there
 on the emulator screen).


 2)
 can any one provide the login screen code with out the xml
 file that means i dont want the UI frm the xml file i would like to go
 with the java code so can any one provided this would be appreciable
 and Thanks

 the login validation should be these words
 the username :  google
 password : google

 --
 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+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

[android-beginners] Re: Can't dispatch DDM chunk 46454154 or 4d505251

2009-11-30 Thread fadden
On Nov 27, 5:17 am, Carly carlyon...@hotmail.co.uk wrote:
 I have seen the above problem covered in previous posts.  However no
 one seems to have suggested a method of fixing this issue.  I have
 found that my app will upload onto the emulator, however it always
 stops unexpectedly.

It's very unlikely that whatever issue you're experiencing is related
to the DDM warning in the subject line of this post.

Converted to ASCII, those are FEAT and MPRQ, essentially tell me what
features you support and method profiling status query.  I'm
guessing that the version of DDMS you're using is newer than the
software on the device, and so the device doesn't know how to
respond.  DDMS understands and handles this.

The output of adb logcat usually provides some clues as to why
things fail.

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] how to create this layout

2009-11-30 Thread Marton Kodok
I've managed to create the first group of the layout. But now, how do I
create N levels of the same layout?

I will read the number of levels from a database (3 in picture). Then I have
to display N settings in vertical way.
Any help would be appreciated?

2009/11/30 Marton Kodok pentiu...@gmail.com

 Sorry, you have a point.

 I have problems with the textview on the right handside, those two
 textviews on the same line
 one on the left, the other on the right.

 2009/11/30 Justin Anderson janderson@gmail.com

 Read the docs and look at some of the demos to get some ideas...

 Other people aren't going to do the work for you.  You need to get your
 hands dirty and do some work.  When you get stuck with a specific problem,
 show what you have done and ask for help...

 Otherwise you will not get any answers

 Thanks,
 Justin

 --
 There are only 10 types of people in the world...
 Those who know binary and those who don't.
 --


 On Mon, Nov 30, 2009 at 11:42 AM, Marton Kodok pentiu...@gmail.comwrote:

 How to create this layout?

 http://img300.imageshack.us/img300/7316/sepm8dr309c7qsuwd6bluxq.png

 Thank you.

 [image:
 http://img300.imageshack.us/img300/7316/sepm8dr309c7qsuwd6bluxq.png]

 --
 Márton

 --
 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+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en


  --
 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+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en




 --
 Márton




-- 
Márton

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

[android-beginners] Join over 3,000 - The Android Developer Group on Linkedin

2009-11-30 Thread DroidDevMgr
Join over 3,000 others and discuss all things Android at:
http://www.linkedin.com/groupRegistration?gid=86481

Join the Android Developer group on Linkeind, a place for Android
developers to share, learn, and network. The resource for connecting
professionals with experience in developing, selling, marketing,
managing, supporting and/or creating new businesses around the Android
platform. We look forward to your participation and contribution!

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Can I update my Motoblur firmware 1.5 to the 2.0?

2009-11-30 Thread Jeffrey Blattman
even if you root your phone, you still need a build of android for your 
device. the motorblur dist of android comes from motorola so assuming 
you can find a build of android for your device, you will lose that 
motoblur garbage.

On 11/30/09 11:03 AM, Justin Anderson wrote:
 Only if you root your phone... otherwise the update needs to come from 
 your cell phone carrier
 --
 There are only 10 types of people in the world...
 Those who know binary and those who don't.
 --


 On Sun, Nov 29, 2009 at 10:57 AM, placerex place...@gmail.com 
 mailto:place...@gmail.com wrote:

 I want to know, i want to be updated.

 --
 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
 mailto:android-beginners@googlegroups.com
 To unsubscribe from this group, send email to
 android-beginners+unsubscr...@googlegroups.com
 mailto:android-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en


 -- 
 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+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en 

-- 

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=enattachment: qr-gmail.png