[android-beginners] Re: Notepad tutorial

2009-01-07 Thread Michael Davis
Yeah I know this is off topic but how do I stop these chats from coming to
my g1?

On Jan 7, 2009 11:48 PM, "Teena"  wrote:


Hi all.

I'm following through the notepad tutorial.  I'm in Exercise 1 and in step 5
it says at the end of step 5:
http://code.google.com/android/intro/tutorial-ex1.html

"Open the R.java class in the project and look at it, you should see new
definitions for notes_row and text1 (our new definitions) meaning we can now
gain access to these from the our code."

I don't have these new definitions as far as I can tell.  I'm learning the
interface of eclipse at the same time, so I might not be looking in the
right place.  Here is the contents of my R.java:

/* AUTO-GENERATED FILE.  DO NOT MODIFY.
 *
 * This class was automatically generated by the
 * aapt tool from the resource data it found.  It
 * should not be modified by hand.
 */

package com.android.demo.notepad1;

public final class R {
   public static final class attr {
   }
   public static final class drawable {
   public static final int icon=0x7f02;
   }
   public static final class layout {
   public static final int notepad_list=0x7f03;
   }
   public static final class string {
   public static final int app_name=0x7f04;
   public static final int no_notes=0x7f040001;
   }
}

I'm looking under Notepadv1 > src > com.android.demo.notepad1 > R.java in
the Package Explorer.  Can anyone suggest why my new definitions are not
there?



--~--~-~--~~~---~--~~
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: Notepad tutorial

2009-01-07 Thread PRATAP SOLAPUR
have you placed the files in proper directoriesnotes_row.xml
must be in under res>layout folder

On 1/8/09, Teena  wrote:
>
>
> Hi all.
>
> I'm following through the notepad tutorial.  I'm in Exercise 1 and in step
> 5
> it says at the end of step 5:
> http://code.google.com/android/intro/tutorial-ex1.html
>
> "Open the R.java class in the project and look at it, you should see new
> definitions for notes_row and text1 (our new definitions) meaning we can
> now
> gain access to these from the our code."
>
> I don't have these new definitions as far as I can tell.  I'm learning the
> interface of eclipse at the same time, so I might not be looking in the
> right place.  Here is the contents of my R.java:
>
> /* AUTO-GENERATED FILE.  DO NOT MODIFY.
> *
> * This class was automatically generated by the
> * aapt tool from the resource data it found.  It
> * should not be modified by hand.
> */
>
> package com.android.demo.notepad1;
>
> public final class R {
>public static final class attr {
>}
>public static final class drawable {
>public static final int icon=0x7f02;
>}
>public static final class layout {
>public static final int notepad_list=0x7f03;
>}
>public static final class string {
>public static final int app_name=0x7f04;
>public static final int no_notes=0x7f040001;
>}
> }
>
> I'm looking under Notepadv1 > src > com.android.demo.notepad1 > R.java in
> the Package Explorer.  Can anyone suggest why my new definitions are not
> there?
>
>
> >
>

--~--~-~--~~~---~--~~
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] Notepad tutorial

2009-01-07 Thread Teena

Hi all.

I'm following through the notepad tutorial.  I'm in Exercise 1 and in step 5
it says at the end of step 5:
http://code.google.com/android/intro/tutorial-ex1.html

"Open the R.java class in the project and look at it, you should see new
definitions for notes_row and text1 (our new definitions) meaning we can now
gain access to these from the our code."

I don't have these new definitions as far as I can tell.  I'm learning the
interface of eclipse at the same time, so I might not be looking in the
right place.  Here is the contents of my R.java:

/* AUTO-GENERATED FILE.  DO NOT MODIFY.
 *
 * This class was automatically generated by the
 * aapt tool from the resource data it found.  It
 * should not be modified by hand.
 */

package com.android.demo.notepad1;

public final class R {
public static final class attr {
}
public static final class drawable {
public static final int icon=0x7f02;
}
public static final class layout {
public static final int notepad_list=0x7f03;
}
public static final class string {
public static final int app_name=0x7f04;
public static final int no_notes=0x7f040001;
}
}

I'm looking under Notepadv1 > src > com.android.demo.notepad1 > R.java in
the Package Explorer.  Can anyone suggest why my new definitions are not
there?


--~--~-~--~~~---~--~~
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] Using built in class for game development

2009-01-07 Thread kozak

Hi All,
I am trying to build a board game, Mastermind
http://en.wikipedia.org/wiki/Mastermind_(board_game).

Briefly put, the player has to guess a a set of colour codes set by
the codmaker (2nd player).

To draw the board itself I need to draw about 48 (12 chances x 4 pegs
each ) holders for the pegs and an additional 48 holders to indicate
the status of each combination. Check out the picture in the wiki
link.

My doubt is regarding the design of the game.

One way to draw the board is to have an image Button (built in class )
for all the pegs and the status pins.

Another way is to take a canvas and draw all the objects for each
move.

I would like to know which is the most efficient way of doing things.
Please feel free to post your suggestions if any.

Thanks and Regards
Kozak
--~--~-~--~~~---~--~~
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: Kind of Stuck - any helpers?

2009-01-07 Thread novice

Kk - I got the menu going.

I must say these examples continue to let me down for more "detailed"
steps, but I guess programming for this thing isn't for everybody.

Suggestion -

For code examples for views, dont just post

"setContentView
(R.I.Have.AN.XML.FILE.THAT.DEFINES.THIS.AND.I.Wont.Show.YOU);

But a little venting on my part...


--~--~-~--~~~---~--~~
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: What kind of xml error...

2009-01-07 Thread Thaw



On Jan 8, 11:03 am, Xavier Ducrohet  wrote:
> This is probably not a problem in your XML file.
>
> What version of Eclipse and of ADT are you running?
>
> Xav
Hi Xav
I am using Eclipse 3.4.1 and ADT 1.0.
Thaw.
--~--~-~--~~~---~--~~
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: Problem in Playing sound

2009-01-07 Thread Dave Sparks

Any error messages in the log? Are you getting an exception?

On Jan 6, 4:42 am, Honest  wrote:
> I am playing sound by putting one folder which contains sound file.
> The coding is as below to play file.
>
> mMediaPlayer = MediaPlayer.create(this, R.raw.test_cbr);
> mMediaPlayer.start();
>
> "Test_cbr.mp3" is a file which i put in RAW folder which is available
> in RES folder. But when i am executing programme the sound is not
> playing. So what can be wrong in it ? Can some one tell me about
> this ?
>
> Any comment will be much appreciated .
--~--~-~--~~~---~--~~
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: Problem in Playing sound

2009-01-07 Thread Dave Sparks

Any error messages in the log? Are you getting an exception?

On Jan 6, 4:42 am, Honest  wrote:
> I am playing sound by putting one folder which contains sound file.
> The coding is as below to play file.
>
> mMediaPlayer = MediaPlayer.create(this, R.raw.test_cbr);
> mMediaPlayer.start();
>
> "Test_cbr.mp3" is a file which i put in RAW folder which is available
> in RES folder. But when i am executing programme the sound is not
> playing. So what can be wrong in it ? Can some one tell me about
> this ?
>
> Any comment will be much appreciated .
--~--~-~--~~~---~--~~
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: setPreviewFrameRate not working on device

2009-01-07 Thread Dave Sparks

The G1 camera drivers currently have very limited control and things
like preview size and frame rate are ignored by the driver. You can
either drop the extra frames or NULL the callback until you finish
processing.

On Jan 6, 11:43 am, Omar  wrote:
> Hi,
>
> I'm doing some processing on the preview frames returned from the
> camera using:
>
> onPreviewFrame(byte[] data, Camera camera)
>
> Before starting the preview I set the preview frame rate like this:
>
> Camera.Parameters p = c.getParameters();
> p.setPreviewFrameRate(5);
> c.setParameters(p);
>
> This works fine on the Android Emulator, but on the device I'm still
> getting approx 15 fps.
>
> Has anyone else had this problem and how have they solved 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
-~--~~~~--~~--~--~---



[android-beginners] Re: MediaPlayer Volume Range

2009-01-07 Thread Dave Sparks

The range is 0 to 1. You can use any increment you want to create a
logarithmic volume scale, just make full volume 1.0. Multiply be a
scalar less than 1.0 to get the next lower volume. Multiply that
volume by the same scalar to get the next one. Repeat until you have
enough values.

The number you choose for your multiplier will vary according to
purpose. For example, the Android music volume control is much finer
grained (32 steps?) than the notification volume control (8 steps?).
To get a smooth fade, you probably want to use 1dB or less (1dB =
~0.89).

On Jan 7, 3:04 am, "Marc Lester Tan"  wrote:
> Hi folks,
>
> I just want to ask if somebody knows the usable range for the MediaPLayer's
> volume levels? The doc just says it is a raw scalar and the UI should scale
> logarithmically. An example would be helpful.
>
> Thanks in advance.
>
> -Marc
--~--~-~--~~~---~--~~
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] Kind of Stuck - any helpers?

2009-01-07 Thread novice

Hello folks,

I need an options menu - so I looked into the menu feature and or
making a subActivity that returns results.

I try subActivity and the moment I do "setContextView" in the
subactivity it craps out and crashes to the lower activity. - What am
I missing?

I altered my manifest.xml so it can lunch but only with a blank
screen.

I try the android.view.Menu

I create a Menu mMenu, and I "add" an item, and the activity fails to
run, the DDMS error would be:

"[2009-01-07 20:42:17 - DeviceMonitor]Connection Failure when starting
to monitor device 'emulator-5554' : device (emulator-5554) request
rejected: device not found"

I just need an options menu so I can change the dimensions of my game
according to the phone they have. I can go both ways I just need
something that works.

The examples are unfortunately skip steps, especially the menu
example, and worst thing is I can only find one menu example. The
subActivity examples just seem to missing key things, and maybe I am
close but something is escaping me.

Can anyone help me out?

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] Re: What kind of xml error...

2009-01-07 Thread Xavier Ducrohet

This is probably not a problem in your XML file.

What version of Eclipse and of ADT are you running?

Xav

On Wed, Jan 7, 2009 at 5:51 PM, Thaw  wrote:
>
> Hi, everybody
> Have u meet like the following error, It is appeared when i open my
> layout files (xml) from my project. But program run correctly. I am
> using Eclipse on Windows.
> 
> Could not open the editor: The editor class could not be instantiated.
> This usually indicates a missing no-arg constructor or that the
> editor's class name was mistyped in plugin.xml.
> 
> If u meet like that, please tell me the way to solve this problem.
> Thanks in advance...
> Regards, Thaw...
> >
>

--~--~-~--~~~---~--~~
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] What kind of xml error...

2009-01-07 Thread Thaw

Hi, everybody
Have u meet like the following error, It is appeared when i open my
layout files (xml) from my project. But program run correctly. I am
using Eclipse on Windows.

Could not open the editor: The editor class could not be instantiated.
This usually indicates a missing no-arg constructor or that the
editor's class name was mistyped in plugin.xml.

If u meet like that, please tell me the way to solve this problem.
Thanks in advance...
Regards, Thaw...
--~--~-~--~~~---~--~~
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: Problem about registration

2009-01-07 Thread exlarger

Any one here? please help~~

On Jan 7, 9:30 am, exlarger  wrote:
> Dear Android:
> We are a software developer team, and we locate in China. Recently, we
> decide to join the Android market for developing some applications for
> Android Mobile phone, everything were just fine until we choose the
> location for developer. There is no option for our Country.
> We are very dissappoit to see that, since Android is an open sorce
> program, and I really don't think there should be any limitation for
> this kind of issue.
> Please help us out.
>
> Best regards;
>
> Mike T.
--~--~-~--~~~---~--~~
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: NetBeans with Android

2009-01-07 Thread Mark Murphy

Kennedy Ximenes wrote:
> thanks for your response, but... after these steps a message window
> appear on the emulator screen: "Sorry! Process com.android.phone is not
> responding"

That is typical of a slow startup.

>Even after closing this screen, the emulator returns to it main
> screen and my application doesn´t run.

Your application is not supposed to run, AFAIK. You need to open the
application drawer and launch it.

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com
_The Busy Coder's Guide to Android Development_ Version 1.9 Published!

--~--~-~--~~~---~--~~
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: NetBeans with Android

2009-01-07 Thread Kennedy Ximenes
Hi Mark,

thanks for your response, but... after these steps a message window
appear on the emulator screen: "Sorry! Process com.android.phone is not
responding"

   Even after closing this screen, the emulator returns to it main screen
and my application doesn´t run.

   Have you ever seen this before?

   Thanks for any help.

   Kennedy.

2009/1/5 Mark Murphy 

>
> Kennedy Ximenes wrote:
> > I´m using NetBeans 6.5 IDE to begin developing some Android project.
> >
> > My first project "Hello Android", when the emulator appears just
> > show a message on screen center "Android" and nothing more. The message
> > "Hello Android" does not appear...What is that?
>
> The first time you run the emulator, it will take substantially longer
> to get to the Android home screen. Depending on the speed of your
> development machine, this may take several minutes.
>
> My recommendation: start up the emulator, go get a beverage of your
> choice, curl up with a newspaper/book/feedreader, and wait it out.
>
> --
> Mark Murphy (a Commons Guy)
> http://commonsware.com
>
> Android Training on the Ranch! -- Mar 16-20, 2009
> http://www.bignerdranch.com/schedule.shtml
>
> >
>

--~--~-~--~~~---~--~~
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] Delete android database

2009-01-07 Thread mitch

Hiya,

Does anyone know if there is a way to remove an android database file
programmatically? I need to remove a lot of records (10,000+) and it
seems it would be quicker to remove the database and re-create from
scratch rather than deleting from the various tables (Which takes
about 20 seconds using triggers to force referential integrity).

Thanks in advance!
mitch
--~--~-~--~~~---~--~~
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: Why do I need a ListView?

2009-01-07 Thread Romain Guy

That's because you are using a ListActivity. If you don't want to use
a ListView, use an Activity instead.

On Wed, Jan 7, 2009 at 11:39 AM, Faber Fedor  wrote:
> I've been fighting this for freaking hours:
>
> I can open my ContentProvider and assign data to variable.  I know want to
> list all the records.  I can't get anything to display.  I've been trying to
> simply things and I've run into a road block: for some reason, I keep
> getting the error "Your content must have a ListView whose id attribute is
> 'android.R.id.list'".
>
> The problem occurs when I modify this layout file:
>
>  xmlns:android="http://schemas.android.com/apk/res/android";
> android:orientation="vertical"
> android:layout_width="fill_parent"
> android:layout_height="fill_parent" >
>  android:id="@+id/selection"
> android:layout_width="fill_parent"
> android:layout_height="wrap_content"/>
>  android:id="@android:id/list"
> android:layout_width="fill_parent"
> android:layout_height="fill_parent"
> android:drawSelectorOnTop="false"
> />
> 
>
> If I take out the ListView, I get the error, but I can't find out where in
> my code I'm referecing that.
>
>
>
> >
>



-- 
Romain Guy
Android framework engineer
romain...@android.com

Note: please don't send private questions to me, as I don't have time
to provide private support.  All such questions should be posted on
public forums, where I and others can see and answer them

--~--~-~--~~~---~--~~
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 do I need a ListView?

2009-01-07 Thread Faber Fedor
I've been fighting this for freaking hours:

I can open my ContentProvider and assign data to variable.  I know want to
list all the records.  I can't get anything to display.  I've been trying to
simply things and I've run into a road block: for some reason, I keep
getting the error "Your content must have a ListView whose id attribute is
'android.R.id.list'".

The problem occurs when I modify this layout file:

http://schemas.android.com/apk/res/android";
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >




If I take out the ListView, I get the error, but I can't find out where in
my code I'm referecing that.

--~--~-~--~~~---~--~~
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: Confusion about selection

2009-01-07 Thread jtaylor



On Jan 5, 11:13 pm, "Pratik Patel"  wrote:
> Hi,
>
> WHICH I SHOULD LEARN FIRST j2me or android. Give ur vote pls to identify
> what to learn.
>

Android replaces J2ME...


- Juan T.
--~--~-~--~~~---~--~~
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: Emulator Problems

2009-01-07 Thread Teena

I get the same thing, but I didn't know it was an error.  I just click the
menu button on the emulator phone, then I run my application by clicking the
icon.


-Original Message-
From: android-beginners@googlegroups.com
[mailto:android-beginn...@googlegroups.com] On Behalf Of Madhuri
Sent: Tuesday, January 06, 2009 10:12 AM
To: Android Beginners
Subject: [android-beginners] Emulator Problems


Hi,

Whenever,i am launching my Emulator from Eclipse, i get Some Error as,


  "The Menu is Locked.Please press menu to release the Lock".

Can any one help me out?.

Thanks,

Dhuri Natarajan.



--~--~-~--~~~---~--~~
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: Android Emulator compile error, SDL

2009-01-07 Thread David Turner
hello,

how did you configure your build, and which host CPU is on your machine ?

what is the output of ./android-configure.sh --verbose when in the
external/qemu directory

On Mon, Jan 5, 2009 at 10:38 PM, dasacc22  wrote:

>
> Hi,
>
> I was trying to compile android emulator on ubuntu 8.10 platform and
> received the following during make
>
> Ready to go. Type 'make' to build emulator
> Prebuilt: objs/libSDLmain.a
> Prebuilt: objs/libSDL.a
> Compile: emulator-dyngen <= dyngen.c
> /home/daniel/Workspace/android/emulator/qemu/dyngen.c:123:2: error:
> #error unsupported CPU - please update the code
> Compile: emulator-op <= target-arm/op.c
> /home/daniel/Workspace/android/emulator/qemu/dyngen.c: In function
> 'load_object':
> /home/daniel/Workspace/android/emulator/qemu/dyngen.c:496: error:
> 'ELF_CLASS' undeclared (first use in this function)
> /home/daniel/Workspace/android/emulator/qemu/dyngen.c:496: error:
> (Each undeclared identifier is reported only once
> /home/daniel/Workspace/android/emulator/qemu/dyngen.c:496: error: for
> each function it appears in.)
> /home/daniel/Workspace/android/emulator/qemu/dyngen.c:2236:2: error:
> #error unsupported CPU
> /home/daniel/Workspace/android/emulator/qemu/dyngen.c:3215:2: error:
> #error unsupported CPU
> make: *** [objs/intermediates/emulator-dyngen/dyngen.o] Error 1
> make: *** Waiting for unfinished jobs
> ERROR: could not build SDL library
>
> Does anyone have any advice?
>
> Thanks,
> Daniel
>
> >
>

--~--~-~--~~~---~--~~
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: Removing installed application in Emulator

2009-01-07 Thread David Turner
an alternative is to rebuild another system partition from the open source
distribution, and use it with the SDK

On Wed, Jan 7, 2009 at 6:38 PM, David Turner  wrote:

> if you mean the applications that are already part of the system image
> (i.e. available after a -wipe-data),
> then you can't uninstall them since the partition is read-only.
>
>
> On Wed, Jan 7, 2009 at 12:10 PM, Apparao Mulpuri  > wrote:
>
>>
>> How can we remove the already installed apps from the Emulator?
>>
>> Thanks,
>> Apparao Mulpuri.
>>
>> >>
>>
>

--~--~-~--~~~---~--~~
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: Removing installed application in Emulator

2009-01-07 Thread David Turner
if you mean the applications that are already part of the system image (i.e.
available after a -wipe-data),
then you can't uninstall them since the partition is read-only.

On Wed, Jan 7, 2009 at 12:10 PM, Apparao Mulpuri
wrote:

>
> How can we remove the already installed apps from the Emulator?
>
> Thanks,
> Apparao Mulpuri.
>
> >
>

--~--~-~--~~~---~--~~
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: error: No repository found at https://dl-ssl.google.com/android/eclipse/.

2009-01-07 Thread Anil

yes, thanks! I should have looked at the troubleshooting section :(

On Jan 6, 2:43 pm, szeldon  wrote:
> This happens sometimes. You should try this link but with "http"
> instead of "https". If this doesn't work, you have to download an
> archive (as described in google's tutorial).
>
> On Jan 6, 9:27 pm, Anil  wrote:
>
> > I also get this error
>
> > No repository found athttps://dl-ssl.google.com/android/eclipse/
> >   Error reading update sitehttps://dl-ssl.google.com/android/eclipse/.
> >   Unconnected sockets not implemented
>
> > On Jan 6, 2:22 pm, Anil  wrote:
>
> > > Is anyone able to download and install the ADT plugin from ubuntu?
> > > (seems to be fine from windows).
> > > I am on ubuntu 8.10/eclipse 3.4.1 and get this error message:
>
> > > No repository found athttps://dl-ssl.google.com/android/eclipse/.
>
> > > thanks,
> > > Anil
--~--~-~--~~~---~--~~
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: send gps location through Eclipse and be nofified through LocationListener.onLocationChanged

2009-01-07 Thread Miroslav Slobodnik

Hi,
yes I use Win XP SP3. Telnet way to seng goe command through geo fix
is working. So the problem is in language to get it work in Eclipse?

On Jan 7, 11:19 am, Spinjev Giginsky 
wrote:
> Hi...
> I believe the problem is the DDMS in eclipse.
> Do you use windows XP? Than it is often written that your language
> settings there must be english.
>
> I got a result with telnet.
>
> C:\>telnet localhost 5554
> Android Console: type 'help' for a list of commands
> OK
> geo fix -82.411629 28.054553
> OK
>
> On 5 Jan., 13:54, Miroslav Slobodnik 
> wrote:
>
> > Hi,
> > I have problem with gps related task. I registered location updates,
> > and then use Eclipse view "Emulator Control" to send GPS location, but
> > method onLocationChanged is never called. Method onStatusChanged is
> > called when I first click button "Send" in Eclipse "Emulator Control".
> > I do not know why? Is there problem with some permission or something
> > like that?
>
> > My permissions:
>
> >          > android:name="android.permission.ACCESS_MOCK_LOCATION"> > permission>
> >          > android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"> > uses-permission>
> >          > android:name="android.permission.ACCESS_FINE_LOCATION"> > permission>
> >          > android:name="android.permission.ACCESS_COARSE_LOCATION"> > permission>
>
> > Code:
>
> > LocationManager locationManager = (LocationManager)getSystemService
> > (Context.LOCATION_SERVICE);
> >                                         
> > locationManager.requestLocationUpdates("gps", 0, 0, new
> > StartJourneyListener(journeyId));
>
> > inner class:
>
> > private class StartJourneyListener implements LocationListener{
> > ...
> >    public void onLocationChanged(Location location){
> >    }
> > ...
>
> > }
>
> > Thank you in advance for replies.
--~--~-~--~~~---~--~~
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: Confusion about selection

2009-01-07 Thread silverberg.ode...@googlemail.com

Well it depends imho. If you have no programming experience with, it's
better to start with java/j2me first.
Experience with j2me of course helps much when it comes to the
security model of mobile devices, as it's quite different from
classical java or desktop programming.

Guess if you're experienced programmer, you can skip the j2me part

On Jan 6, 5:13 am, "Pratik Patel"  wrote:
> Hi,
>
> WHICH I SHOULD LEARN FIRST j2me or android. Give ur vote pls to identify
> what to learn.
>
> I have just started Android development but after reading starting concepts
> I am confused about selection. Whether I should learn J2ME first and
>
> Then android because Android requires JAVA. Which should I learn first ?
> Because it will be same to learn both then I should start with j2me because
>
> Atleast I will have java knowledge when I will start android.
>
> Please reply me to identify.
>
> Thanks and Regads,
>
> Pratik Patel
>
> Sr. Software Engineer
>
> C-SAM
>
> www.c-sam.com
>
> email: pratik.pa...@c-sam.com 
> + 91 265 2324018/19 (O)
> + 91 265 2334156     (F)
--~--~-~--~~~---~--~~
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: Multiple activities in a package

2009-01-07 Thread PRATAP SOLAPUR
change the action tag in the manifest.xml to other than main
set it to view.


On 1/6/09, rktb  wrote:
>
>
> Hi,
>
> I have 5 activities and a receiver defined in my test package. Upon
> successfully building and launching the emulator, I see 5 copies of
> the applications in my home screen. Each icon representing one
> activity. What am I missing so that I see only one application icon? I
> am referring
> http://code.google.com/android/reference/android/R.styleable.html#AndroidManifestActivity
> but don't seem to be finding an option.
>
>
> Thanks,
> Ravi
>
> >
>

--~--~-~--~~~---~--~~
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] Removing installed application in Emulator

2009-01-07 Thread Apparao Mulpuri

How can we remove the already installed apps from the Emulator?

Thanks,
Apparao Mulpuri.

--~--~-~--~~~---~--~~
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: Emulator Problems

2009-01-07 Thread PRATAP SOLAPUR
Its not an errror.its like the mobile keypad lock..to unlock
press menu.

On 1/6/09, Madhuri  wrote:
>
>
> Hi,
>
>Whenever,i am launching my Emulator from Eclipse, i get Some Error
> as,
>
>
> "The Menu is Locked.Please press menu to release the Lock".
>
> Can any one help me out?.
>
> Thanks,
>
> Dhuri Natarajan.
>
> >
>

--~--~-~--~~~---~--~~
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] MediaPlayer Volume Range

2009-01-07 Thread Marc Lester Tan
Hi folks,

I just want to ask if somebody knows the usable range for the MediaPLayer's
volume levels? The doc just says it is a raw scalar and the UI should scale
logarithmically. An example would be helpful.

Thanks in advance.

-Marc

--~--~-~--~~~---~--~~
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: Problem in Playing sound

2009-01-07 Thread PRATAP SOLAPUR
May be the  emulator volume is set to mute.

On 1/6/09, Honest  wrote:
>
>
> I am playing sound by putting one folder which contains sound file.
> The coding is as below to play file.
>
> mMediaPlayer = MediaPlayer.create(this, R.raw.test_cbr);
>mMediaPlayer.start();
>
>
> "Test_cbr.mp3" is a file which i put in RAW folder which is available
> in RES folder. But when i am executing programme the sound is not
> playing. So what can be wrong in it ? Can some one tell me about
> this ?
>
> Any comment will be much appreciated .
> >
>

--~--~-~--~~~---~--~~
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] Confusion about selection

2009-01-07 Thread Pratik Patel
Hi,

WHICH I SHOULD LEARN FIRST j2me or android. Give ur vote pls to identify
what to learn.

I have just started Android development but after reading starting concepts
I am confused about selection. Whether I should learn J2ME first and 

Then android because Android requires JAVA. Which should I learn first ?
Because it will be same to learn both then I should start with j2me because

Atleast I will have java knowledge when I will start android.

 

Please reply me to identify.

 

 

Thanks and Regads,

Pratik Patel

Sr. Software Engineer

C-SAM

www.c-sam.com

 

email: pratik.pa...@c-sam.com  
+ 91 265 2324018/19 (O)
+ 91 265 2334156 (F)

 


--~--~-~--~~~---~--~~
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@googlegroups.com

2009-01-07 Thread Waldoh

"According a report from OFB's Timothy Butler, AT&T has been boosting
its 3G coverage and signal strength over the last few months; however,
the upgrade is at the expense of its 2G client base.  Company
technicians have confirmed to OFB that they have been switching 850
MHz 2G repeaters to 3G service and using the weaker 1900 MHz repeaters
as replacement.  This has already left some 2G users with reduced
reception and weaker signal in previously strong areas.  "

I noticed that the dev1 phone supports the 850MHz, does that mean a
dev1 phone owner could get 3G service with AT&T? I'm slowly learning
so any help would be grateful

--~--~-~--~~~---~--~~
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] setPreviewFrameRate not working on device

2009-01-07 Thread Omar

Hi,

I'm doing some processing on the preview frames returned from the
camera using:

onPreviewFrame(byte[] data, Camera camera)

Before starting the preview I set the preview frame rate like this:

Camera.Parameters p = c.getParameters();
p.setPreviewFrameRate(5);
c.setParameters(p);

This works fine on the Android Emulator, but on the device I'm still
getting approx 15 fps.

Has anyone else had this problem and how have they solved 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
-~--~~~~--~~--~--~---



[android-beginners] Re: How to post an issue?

2009-01-07 Thread sync qa2
Ftguhzjgvc

On Jan 5, 2009 9:27 AM, "Dave"  wrote:


It would appear the comment in step 10 (first sub-step) of the
tutorial http://code.google.com/android/intro/tutorial-ex3.html does
not correspond to the code being removed.  Was trying to just let
someone know. The Feedback link on the page alludes to an issue
tracker -- after a little search, just thought I'd ask where the issue
tracker can be found.

thx


--~--~-~--~~~---~--~~
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: help pls..

2009-01-07 Thread georg.si...@googlemail.com

It sounds like the setup routine for your gmail account ... my aked me
too. Ones I've set it up it asked never again.

--~--~-~--~~~---~--~~
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] Emulator Problems

2009-01-07 Thread Madhuri

Hi,

Whenever,i am launching my Emulator from Eclipse, i get Some Error
as,


  "The Menu is Locked.Please press menu to release the Lock".

Can any one help me out?.

Thanks,

Dhuri Natarajan.

--~--~-~--~~~---~--~~
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] Multiple activities in a package

2009-01-07 Thread rktb

Hi,

I have 5 activities and a receiver defined in my test package. Upon
successfully building and launching the emulator, I see 5 copies of
the applications in my home screen. Each icon representing one
activity. What am I missing so that I see only one application icon? I
am referring 
http://code.google.com/android/reference/android/R.styleable.html#AndroidManifestActivity
but don't seem to be finding an option.


Thanks,
Ravi

--~--~-~--~~~---~--~~
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] API to add/update/delete events on Native calendar on Android OS phone

2009-01-07 Thread ANDROID

HI Friends,

I am New to Android Development.
I would like to know what are the API / classes we have for accessing
the native calendar on the device.
Like in JavaME you have JSR 75 for acessing the device PIM.

Thank you
your A

--~--~-~--~~~---~--~~
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] Problem about registration

2009-01-07 Thread exlarger

Dear Android:
We are a software developer team, and we locate in China. Recently, we
decide to join the Android market for developing some applications for
Android Mobile phone, everything were just fine until we choose the
location for developer. There is no option for our Country.
We are very dissappoit to see that, since Android is an open sorce
program, and I really don't think there should be any limitation for
this kind of issue.
Please help us out.

Best regards;

Mike T.

--~--~-~--~~~---~--~~
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: Playing Sound

2009-01-07 Thread rktb

Toast is a notification widget. The above piece of code will display a
small notification at the near the bottom of your screen that the
"path" has not been set.

In the above example, inside the if (path==""){ }, it would be better
to return rather than continuing.

Please look at 
http://code.google.com/android/reference/android/media/MediaPlayer.html
for the list of exceptions that the APIs can throw.

-Ravi

On Jan 6, 1:54 pm, Honest  wrote:
> I am learning API related to sound playing.  I was understanding code
> for it. The code is as below.
>
> private void playAudio(Integer media) {
>         try {
>             switch (media) {
>                 case LOCAL_AUDIO:
>                     /**
>                      * TODO: Set the path variable to a local audio
> file path.
>                      */
>                     path = "";
>                     if (path == "") {
>                         // Tell the user to provide an audio file URL.
>                         Toast.makeText(
>                                         MediaPlayerDemo_Audio.this,
>                                         "Please edit MediaPlayer_Audio
> Activity, "
>                                                 + "and set the path
> variable to your audio file path."
>                                                 + " Your audio file
> must be stored on sdcard.",
>                                         Toast.LENGTH_LONG).show();
>
>                     }
>                     mMediaPlayer = new MediaPlayer();
>                     mMediaPlayer.setDataSource(path);
>                     mMediaPlayer.prepare();
>                     mMediaPlayer.start();
>                     break;
>
> I could not understand the block of code after the condition if
> (path=="").
>
> What Toast.makeText() will do ? FRom my understanding it is not
> intializing any value to path variable so at the end of that code
> block the value of path will be ""(blank) after that there is a code
> to play file by giving path but the value of path is blank so will
> there be any exception ?
>
> I hope some one will give 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.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Android Emulator compile error, SDL

2009-01-07 Thread dasacc22

Hi,

I was trying to compile android emulator on ubuntu 8.10 platform and
received the following during make

Ready to go. Type 'make' to build emulator
Prebuilt: objs/libSDLmain.a
Prebuilt: objs/libSDL.a
Compile: emulator-dyngen <= dyngen.c
/home/daniel/Workspace/android/emulator/qemu/dyngen.c:123:2: error:
#error unsupported CPU - please update the code
Compile: emulator-op <= target-arm/op.c
/home/daniel/Workspace/android/emulator/qemu/dyngen.c: In function
‘load_object’:
/home/daniel/Workspace/android/emulator/qemu/dyngen.c:496: error:
‘ELF_CLASS’ undeclared (first use in this function)
/home/daniel/Workspace/android/emulator/qemu/dyngen.c:496: error:
(Each undeclared identifier is reported only once
/home/daniel/Workspace/android/emulator/qemu/dyngen.c:496: error: for
each function it appears in.)
/home/daniel/Workspace/android/emulator/qemu/dyngen.c:2236:2: error:
#error unsupported CPU
/home/daniel/Workspace/android/emulator/qemu/dyngen.c:3215:2: error:
#error unsupported CPU
make: *** [objs/intermediates/emulator-dyngen/dyngen.o] Error 1
make: *** Waiting for unfinished jobs
ERROR: could not build SDL library

Does anyone have any advice?

Thanks,
Daniel

--~--~-~--~~~---~--~~
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] Flip view in Gmail app on Android

2009-01-07 Thread Chris



Hello,

My fiancee & I have threads that last several hundred emails, and
gmail does the conversation view thing... however, on the Android,
when receiving new mail, leaving the app and coming back to the email
again later, etc; I have to scroll through all three hundred emails to
get to the very bottom to view what she said.

Is there a way to flip the gmail controls, or conversation view, so
that the previous emails are stacked under the new email instead of
over?

I'm starting to get really frustrated with it.

--~--~-~--~~~---~--~~
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: send gps location through Eclipse and be nofified through LocationListener.onLocationChanged

2009-01-07 Thread Spinjev Giginsky

Hi, I have exactly the same problem.
But also looking for a solution :(

On 6 Jan., 11:18, Miroslav Slobodnik 
wrote:
> Can anybody help me? Android SDK version 1.0_r2.

--~--~-~--~~~---~--~~
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: send gps location through Eclipse and be nofified through LocationListener.onLocationChanged

2009-01-07 Thread georg.si...@googlemail.com

I have this behaviour too. On the G1 device onLocationChanged works
well but I would like to know how to get this working on the emulator
too.

--~--~-~--~~~---~--~~
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: about make file structure

2009-01-07 Thread sync qa2
Dfghjgvfcx

On Jan 5, 2009 9:27 AM, "dj"  wrote:


Hi All,
 I want to know about makefile structure of android.means for
"make aidl" ,which makefiles it is calling and their sequence of
calling.how do i come to know about this makefile structure for
building of seperate module?can anybody having idea on this?

Regards,
Dj


--~--~-~--~~~---~--~~
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: Hello Android!

2009-01-07 Thread Benjamin

Thanks for the tips !
On 4 jan, 11:51, Steve Carville  wrote:
> Go into 'Run Configurations' and hit the 'Target' tab.  Change the 'Emulator
> Launch Parameters to GPRS for Network speed and Latency.  You could also
> tick the 'Wipe User Data' tab. Then all you have to do is run the app and
> give the emulator time to boot up (although you can disable the boot
> animation too).
>
> Don't know about the other question; I'm a beginner too and the Notepad app
> tutorial looks pretty scary!!
>
> Steve
>
> -Original Message-
> From: android-beginners@googlegroups.com
>
> [mailto:android-beginn...@googlegroups.com] On Behalf Of Buixa
> Sent: 02 January 2009 11:06
> To: Android Beginners
> Subject: [android-beginners] Hello Android!
>
> Hi!
>
> I'm Buixa from Barcelona (Spain) and It's my first day with Android.
>
> I've done all steps explained 
> inhttp://code.google.com/intl/es-ES/android/intro/hello-android.html.
>
> I launch the Android's aplication and then Eclipse executes Android
> emulator but I only see the Android emulator with words "ANDROID". It
> doesn't run Hello, Android!
>
> Why? and What Have i do to lauch my Android's aplication well?
>
> Buixa

--~--~-~--~~~---~--~~
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: send gps location through Eclipse and be nofified through LocationListener.onLocationChanged

2009-01-07 Thread Spinjev Giginsky

Hi...
I believe the problem is the DDMS in eclipse.
Do you use windows XP? Than it is often written that your language
settings there must be english.

I got a result with telnet.

C:\>telnet localhost 5554
Android Console: type 'help' for a list of commands
OK
geo fix -82.411629 28.054553
OK


On 5 Jan., 13:54, Miroslav Slobodnik 
wrote:
> Hi,
> I have problem with gps related task. I registered location updates,
> and then use Eclipse view "Emulator Control" to send GPS location, but
> method onLocationChanged is never called. Method onStatusChanged is
> called when I first click button "Send" in Eclipse "Emulator Control".
> I do not know why? Is there problem with some permission or something
> like that?
>
> My permissions:
>
>          android:name="android.permission.ACCESS_MOCK_LOCATION"> permission>
>          android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"> uses-permission>
>          android:name="android.permission.ACCESS_FINE_LOCATION"> permission>
>          android:name="android.permission.ACCESS_COARSE_LOCATION"> permission>
>
> Code:
>
> LocationManager locationManager = (LocationManager)getSystemService
> (Context.LOCATION_SERVICE);
>                                         
> locationManager.requestLocationUpdates("gps", 0, 0, new
> StartJourneyListener(journeyId));
>
> inner class:
>
> private class StartJourneyListener implements LocationListener{
> ...
>    public void onLocationChanged(Location location){
>    }
> ...
>
> }
>
> Thank you in advance for replies.

--~--~-~--~~~---~--~~
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: error: No repository found at https://dl-ssl.google.com/android/eclipse/.

2009-01-07 Thread Kusuma Pabba

Anil wrote:
> Is anyone able to download and install the ADT plugin from ubuntu?
> (seems to be fine from windows).
> I am on ubuntu 8.10/eclipse 3.4.1 and get this error message:
>
> No repository found at https://dl-ssl.google.com/android/eclipse/.
>
> thanks,
> Anil
> >
>
>   
if you do not get it that ways try out with http:// instead of 
https:// you will surely able to download

Thanks & Regards
  kusuma.p

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---