[android-beginners] Re: Problems with creating a Hello World Application for Android

2009-02-17 Thread Jackie Lee

When installed and configured exactly like the tutorials, you won't
get errors like this. I guess you didn't follow the steps, did you?

You should install ADT plugin, following steps here:
http://developer.android.com/sdk/1.1_r1/installing.html#installingplugin

And if you have the SDK, you can open the document by opening
documentation.html under the sdk folder. You must have an SDK packege,
do you?

After one week on android, I feel like I'm experience too.

On Tue, Feb 17, 2009 at 2:14 AM, Matheus Castro mcas...@ciandt.com wrote:
 I dont know for certain, but my guess would be that you are using a JDK
 pre-1.5

 this command(@override) is a annotation, that is only supported from JDK
 version 1.5


 but thats only a guess, maybe its something else, just make sure to check
 that.

 []'s
 Matheus

 On Mon, Feb 16, 2009 at 2:53 PM, weird0 amiredi...@gmail.com wrote:

 Hi all!!

 I am an experienced programmer and have worked on different platforms.
 Though, I am new to the mobile applications, android and java. Though,
 I can learn the syntax and semantics of java within a week.

 Upon following the steps for creating the Hello World app, the
 keywords Android, Activity, @override and TextView are underlined in
 red, which indicates that the IDE does not recognize them. When i run
 the project, the IDE says to please fix the errors before running the
 project.

  Please point the error in my application or point out what step am I
 missing in creating the   application.

  Happy Coding





 




-- 
Regards,
Yuxing LI

--~--~-~--~~~---~--~~
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 sounds on the emulator

2009-02-17 Thread Jackie Lee

android.media.MediaPlayer does support midi format natively, I think
you can try to play a midi file to get a 'C' note.

On Mon, Feb 16, 2009 at 5:00 PM, Gökhan Yamaç gokhanya...@gmail.com wrote:

 Hi,

 I am trying to play certain notes with certain instrument sounds on
 the Anroid Emulator. I am using Android SDK 1.0 R2. Actually I should
 start with this simple question:

 How can a play a simple C note on an android device?

 Thank you

 Gokhan

 




-- 
Regards,
Yuxing LI

--~--~-~--~~~---~--~~
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: Starting app not listed in launcher

2009-02-17 Thread Jackie Lee

start a term under Linux or command window under Windows,
cd to tools under the SDK directory. Type:

./adb install Term.apk

For more information about adb, you can input adb -help to see more
information.

I guess this is what you want.

On Mon, Feb 16, 2009 at 9:29 PM, Lutz Schönemann
lutz.schoenem...@sit.fraunhofer.de wrote:

 Hi,

 is there a way to run an application that is not listed in the
 launcher app?

 I downloaded the Android source code and build it. I found that there
 is an app called Term.apk but there is no launcher entry. How can I
 start it on the emulator?

 Thanks
 Lutz

 




-- 
Regards,
Yuxing LI

--~--~-~--~~~---~--~~
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: My fix for white on white multi choice items - Re: WTF! My dialog multichoice items have white text on white list background!

2009-02-17 Thread Ben Williamson
Romain Guy wrote:
 We fixed this issue in cupcake.

 On Mon, Feb 16, 2009 at 6:21 PM, Ben Williamsontek.bas...@gmail.com  wrote:

 Ben Williamson wrote:
  
 Ben Williamson wrote:

 I've been beating my head against the wall on this one for a minute
 now... did I find another bug like the list selector solid color one?

 When I set multichoice items for a dialog as seen below my list items
 have white background and white text, when I click or select an item
 I can see the text becomes black and the orange list selector shows
 as expected anyone know what's up?


 AlertDialog.Builder diag = new
 AlertDialog.Builder(BookmarkEditActivity.this);
  diag.setTitle(Select Labels);
  String[] arrLabelsChar = new String[arrLabels.size()];
  boolean[] arrSelectedLabels = new
 boolean[arrLabels.size()];
  for (int i = 0; i  arrLabels.size(); i++) {
  arrLabelsChar[i] = arrLabels.get(i);
  if (hashLabels.containsKey(arrLabels.get(i)))
  arrSelectedLabels[i] = true;
  else
  arrSelectedLabels[i] = false;
  }

  Log.v(SoBook, Multi Choice Items:   +
 arrLabelsChar[0]);
  Log.v(SoBook, Selected items:  +
 arrSelectedLabels[0]);

  diag.setMultiChoiceItems(arrLabelsChar,
 arrSelectedLabels, null);
  diag.setNegativeButton(Cancel, null);
  diag.setPositiveButton(OK, null);
  diag.show();
  
 HAHAHA I did, I did see a puddy tat! Found my second bug here people:|


 Switch my activity theme to black (from white) and now my text is
 visible. Maybe this is fixed in sdk 1.1 I should upgrade.

 My fix to anyone interested

 Make sure the activity displaying the dialog is set to a black theme
 originally (inside your manifest). Inside your activity class grab the
 window (getWindow()) and call setBackgroundDrawable set it to a
 color if you wish... make sure you use getResources().getDrawable(ID) or
 you will just end up trying to pass an id as a drawable. I used
 android.R.color.background_light.

 Oh yea, and any labels (TextViews) inside the activity will have to
 manually bet set to a darker color (as they are gray in the black theme,
 which doesn't show up well).


 Hope this helps someone!

  




Excellent, thanks for the heads up! :)

--~--~-~--~~~---~--~~
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 can I publish my app?

2009-02-17 Thread Nox

Yes,but can I sign it with jarsigner?
I mean where can I find jarsigner???

On 16 Feb., 05:51, snctln catlin.s...@gmail.com wrote:
 http://developer.android.com/guide/publishing/app-signing.html

 ---snctlnwww.snctln.com

 On Feb 15, 10:46 am, Nox v.beh...@googlemail.com wrote:

  Hallo,I´m new with Android.
  I´ve already developed an application,but I don´t konw how to upload
  it into the Android Market!!!
  If I tab to uplaod,there always appers this error message:

  The apk is not properly signed.

  But how can I sign it???

  Thanks in advance
  Nox
--~--~-~--~~~---~--~~
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 is not updated

2009-02-17 Thread ANGELINK999

I'm starting with Android and following the Notepad tutorial (http://
developer.android.com/guide/tutorials/notepad/).

I'm with the second exercise, but it seems that the code is not
updated.

At the Exercise 2, step 2, point 2 is the following code:

public boolean onCreateContextMenu(Menu menu, View v
ContextMenuInfo menuInfo) {
super.onCreateContextMenu(menu, v, menuInfo);
menu.add(0, DELETE_ID, 0, R.string.menu_delete);
}

However if you try to override this method writing this code it will
mark some errors. It seems the old version of this method looked like
that, but now the signature of the method
android.app.Activity.onCreateContextMenu is:

public void  onCreateContextMenu  (ContextMenu menu, View v,
ContextMenu.ContextMenuInfo menuInfo)


I recommend to make the respective changes to the tutorial to avoid
confusion to us, the beginners. 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] bugs in Dev Guide's Hello, Form Stuff sample ?

2009-02-17 Thread Stanley_Krute

Howdy

In the Dev Guide tutorial sample Hello Form Stuff, there are several
instances where the code reads

  Toast.makeText(HelloImageButton.this ...

Those should read

Toast.makeText(HelloFormStuff.this ...


-- stan

--~--~-~--~~~---~--~~
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] Online Android Programming courses

2009-02-17 Thread dushyEDU

Greetings to all Techies out here..

I would like to inform you that we are currently running a promo with
EDUmobile.org.

This is a mobile games and mobile applications programming training
lab that has been in the mobile programming space for over 5 years.

If you're interested in learning how to develop top class games and
applications for the iPhone, HTC Touch (Android), Instinct, WinMobile,
or any other mobile device or platforms - then you should definitely
have a look at what they offer...

http://EDUmobile.org

While sending an enquiry enter your promotion code AZV, and you will
get a 20% discount Should you choose to sign up.

Mobile professionals are earning as much as Rs 6 lakhs per annum today
as this is a hot and growing industry.

The classes are taught as a combination of various online modules and
you get the ability to work on live industry projects, alongwith an
opportunity to be placed in top mobile gaming and mobile application
development software companies.

Register today and walk in for your free one-on-one consultancy.

http://EDUmobile.org

Let me know how it goes, and if you need anything else.

Thanks

Dushyant Tomar
Email:- dushyant.edumob...@gmail.com

--~--~-~--~~~---~--~~
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] bugs in Dev Guide's Hello, Form Stuff sample ?

2009-02-17 Thread Stanley_Krute

Howdy

Working my way methodically through the samples.

In Hello, Form Stuff there are several lines in the code that
contain

 Toast.makeText(HelloImageButton.this, ...

I believe that those instances should read

 Toast.makeText(HelloFormStuff.this, ...

Also: a suggestion:

It'd be a good thing to have a way to add comments to the Dev Guide
sample pages where such bugs could be noted for fixing (per the PHP
docs example). Once the bugs were fixed, the relevant comment[s] could
be removed.

-- stan



--~--~-~--~~~---~--~~
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] R class not created or updating in Eclipe

2009-02-17 Thread mike.g.rai...@gmail.com

Hi,

I recently installed and got started with the android SDK. After
setting up the SDK and the Eclipse ADT plugin I ran the API Demo's
project fine. When trying to create my own HelloWorld project I
noticed that the R class was not auto created. After some searching I
found that the problem was not local to me, yet a solution wasn't
presented. Is this a bug? Intended? Is there a workaround?


Thanks,
Mike

--~--~-~--~~~---~--~~
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] Features supported by Android OS

2009-02-17 Thread mozaal
Hello Every one,

I am new to this group and I was interested in exploring the list of
features supported by Android OS.

For example:

   - Multimedia support: List of format supported example, aac+, amr, .3gp,
   .mp4 etc )
   - Radio feature ( if any )

I got a list on following link but it seems is not enough for me ;)
http://source.android.com/release-features

If some one can provide me with the link where I can find the specs/
features in detail or can help me thru with my question.

Thanks

mozaal



 android-beginners@googlegroups.com

--~--~-~--~~~---~--~~
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] For Androip Queries

2009-02-17 Thread sem

Hi ,
 i m the Beginer for Androip development so  let me know how to start
development in the Androip?

--~--~-~--~~~---~--~~
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 can I find out the text height from a paint object?

2009-02-17 Thread ying...@gmail.com

Hi,

If I have a android.graphics.Paint, how can I find out the ascent/
descent of the text for that Paint object?

Thank you.

--~--~-~--~~~---~--~~
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: Online Android Programming courses

2009-02-17 Thread Faber Fedor
How come I've seen this spam like four times today but I haven't seen my
menu question I posted last night (yes, I did a search on my name over at
http://groups.google.com/group/android-beginners)?


On Tue, Feb 17, 2009 at 7:15 AM, dushyEDU dushyant.edumob...@gmail.comwrote:


 Greetings to all Techies out here..

 I would like to inform you that we are currently running a promo with
 EDUmobile.org.


snip



-- 
Faber Fedor
Linux New Jersey
http://linuxnj.com
faberfedor.blogspot.com

--~--~-~--~~~---~--~~
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: Online Android Programming courses

2009-02-17 Thread Mark Murphy

 How come I've seen this spam like four times today but I haven't seen my
 menu question I posted last night (yes, I did a search on my name over at
 http://groups.google.com/group/android-beginners)?

Do you post by Web or by your mail client?

Web-based posts go into some sort of moderation queue; emailed posts
appear to get published fairly quickly.

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



--~--~-~--~~~---~--~~
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 1.1_r1 SDK released and developer.android.com launched

2009-02-17 Thread Joseph Arceneaux
Thanks, that was informative, but can you tell me how to force an update to
the device in order to obtain Latitude?  A colleague says this is supposed
to happen automatically after a full recharge, but that doesn't occur on my
phone.
Joe

On Mon, Feb 16, 2009 at 6:20 PM, Romain Guy romain...@google.com wrote:


 The SDK is only warning you in case you are using features/APIs that
 are not present in the version 1.0 of Android. To get rid of the
 warning you simply edit your AndroidManifest.xml and indicate what
 version of Android your application supports. Everything is explained
 here: http://d.android.com/sdk/android-1.1.html

 On Mon, Feb 16, 2009 at 6:16 PM, Ben Williamson tek.bas...@gmail.com
 wrote:
  Joseph Arceneaux wrote:
 
  I would appreciate any information on this - the SDK works fine on the
  emulator, but:
  a) Running on the device generates a warning saying its software is out
 of
  date with my application.
  b) I keep hearing about an OTA update, and friends in Europe are playing
  with Latitude, but nothing has been updated on my phone, and I can't find
  any way to do this with the USB cable.
  I am using the developer phone with an ATT SIM;  does this imply that I
  won't get timely or convenient updates?
  Thanks,
  Joe
 
  On Mon, Feb 16, 2009 at 7:27 AM, Nanard bsegon...@free.fr wrote:
 
  When API 1.1 will be installed on G1 ?
 
  Is there a roadmap for each countries ?
 
  I plan to deliver a new release of my application for 1.1 only, but if
  there are no customer yet,  may receive a lot of complains...
 
 
 
 
  Have you installed a custom build? If so OTA wont get to you, you will
 have
  to manually install an upgraded version of the custom build
 JesusFreke's
  new version has already hit, check it out.
 
  
 



 --
 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] Re: Online Android Programming courses

2009-02-17 Thread Faber Fedor
On Tue, Feb 17, 2009 at 1:15 PM, Mark Murphy mmur...@commonsware.comwrote:

 Do you post by Web or by your mail client?

 Web-based posts go into some sort of moderation queue; emailed posts
 appear to get published fairly quickly.


I post and read via my Gmail account.



-- 
Faber Fedor
Linux New Jersey
http://linuxnj.com
faberfedor.blogspot.com

--~--~-~--~~~---~--~~
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: Features supported by Android OS

2009-02-17 Thread David Turner
You should definitely try using a search engine, I just made a request and
it came up with the following page:
http://developer.android.com/guide/appendix/media-formats.html

As to what radio feature means, I don't know; that term is too vague, but
I encourage you to, hum, search the forums ?

On Tue, Feb 17, 2009 at 1:43 AM, mozaal moz...@gmail.com wrote:

 Hello Every one,

 I am new to this group and I was interested in exploring the list of
 features supported by Android OS.

 For example:

- Multimedia support: List of format supported example, aac+, amr,
.3gp, .mp4 etc )
- Radio feature ( if any )

 I got a list on following link but it seems is not enough for me ;)
 http://source.android.com/release-features

 If some one can provide me with the link where I can find the specs/
 features in detail or can help me thru with my question.

 Thanks

 mozaal



  android-beginners@googlegroups.com

 


--~--~-~--~~~---~--~~
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: google spreadsheet as a db in the cloud

2009-02-17 Thread Sri

Thanks, Got it.

On Feb 15, 10:08 am, Tote tot...@gmail.com wrote:
 http://lmgtfy.com/?q=google+spreadsheet+api+java

 On Feb 14, 5:09 pm,Srivat...@gmail.com wrote:

  Putting together an android app that has to upload data to google
  spreadsheet. Are there APIs anyone is aware that I can use in android
  (or google docs) to make I/Os directly to google docs?
--~--~-~--~~~---~--~~
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 Hide and seek with menu items

2009-02-17 Thread Faber Fedor
Let's try this again, shall we?

On Mon, Feb 16, 2009 at 9:20 PM, Faber Fedor faberfe...@gmail.com wrote:

 On my map menu I've got two menuitems: Map View and Satellite View.
 I'm sure you can figure out what they do. :-)  I want to push Map View and
 have the Satellite View menuitem disappear and vice-versa.  I thought the
 following code was the obvious way to do it, but my map_menuitem and
 satellite_menuitem are both set to null.  Yes, the R.id's do exist and
 Eclipse is happy with all the code. I don't see why this shouldn't work,
 'cept it don't. Suggestions?

 CODE
 public boolean onOptionsItemSelected(MenuItem item) {

 Intent i;

 switch(item.getItemId()) {
 case R.id.satellite_menuitem:
 MenuItem map_menuitem  = (MenuItem)
 findViewById(R.id.map_menuitem);
 map_menuitem.setVisible(false);

 item.setVisible(true);

 map.setSatellite(true);
 map.invalidate();
 break;
 case R.id.map_menuitem:
 MenuItem satellite_menuitem  = (MenuItem)
 findViewById(R.id.satellite_menuitem);
 satellite_menuitem.setVisible(false);

 item.setVisible(true);

 map.setSatellite(false);
 map.invalidate();
 break;
 }

 return(super.onOptionsItemSelected(item));
 }

 /CODE


 --
 Faber Fedor
 Linux New Jersey
 http://linuxnj.com




-- 
Faber Fedor
Linux New Jersey
http://linuxnj.com
faberfedor.blogspot.com

--~--~-~--~~~---~--~~
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] GMAPS API: Gdirections not supported ??

2009-02-17 Thread h...@nnes

Hi,

It seems to that Gdirections of the Maps API is not supported with a
Webview. Can someone confirm that or better prove me wrong? Could not
find anything about that subject!

Thanks, Hannes
--~--~-~--~~~---~--~~
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] Vodafone HTC Magic skin now available for Android Emulator!

2009-02-17 Thread Tea Vui Huang

Vodafone HTC Magic skin now available for Android Emulator!
http://teavuihuang.com/android

To install, download and unzip HVGA-P-HTCMagic.zip to the Android
skin directory, e.g. C:\android-sdk-windows-0.9_beta\tools\lib\images
\skins. To run the Android emulator with this HTC skin, enter this on
the command line: emulator -skin HVGA-P-HTCMagic.

Tea Vui Huang's Android Page
[The No.1 website for Google Android Emulator Skins]


--~--~-~--~~~---~--~~
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: Features supported by Android OS

2009-02-17 Thread mozaal
Thanks Dave,





On Wed, Feb 18, 2009 at 5:55 AM, David Turner di...@android.com wrote:

 You should definitely try using a search engine, I just made a request and
 it came up with the following page:
 http://developer.android.com/guide/appendix/media-formats.html

 As to what radio feature means, I don't know; that term is too vague, but
 I encourage you to, hum, search the forums ?


 On Tue, Feb 17, 2009 at 1:43 AM, mozaal moz...@gmail.com wrote:

 Hello Every one,

 I am new to this group and I was interested in exploring the list of
 features supported by Android OS.

 For example:

- Multimedia support: List of format supported example, aac+, amr,
.3gp, .mp4 etc )
- Radio feature ( if any )

 I got a list on following link but it seems is not enough for me ;)
 http://source.android.com/release-features

 If some one can provide me with the link where I can find the specs/
 features in detail or can help me thru with my question.

 Thanks

 mozaal



  android-beginners@googlegroups.com




 


--~--~-~--~~~---~--~~
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: Will the android dev 1 phone update ota?

2009-02-17 Thread Logik

sounds about right

On Feb 10, 2:50 pm, Jakor jak...@gmail.com wrote:
 Personally I do not think that the ADP1 should get OTAupdates. The
 main reason we get this version of the phone is so we have full
 control over it and what it does. If we make minor changes to the
 source we would have to disable the OTAupdatesto keep our changes
 from changing without our knowledge. I don't care if the phone is
 *CAPABLE* of doing the OTAupdates, but it's a developer's phone and
 should be treated that way.

 My 2 cents,
 Jakor

 On Feb 10, 4:39 am, Joe_Booboo cyril.bouhall...@gmail.com wrote:

  Hi,

  My feeling is that the Android Dev 1 will not get an OTA (over the
  air) update,
  simply because you need to have a T-mobile G1 phone.

  I do hope that Google will give instructions on how to update the
  Android for the Dev 1 phone

  Rgds

  On Jan 17, 3:51 pm, Anton Melser melser.an...@gmail.com wrote:

I was wondering if theandroiddev1 will update it self once an
update is available, such as the cupcake update or do I need to
install it from source myself?

   I second that request
   Cheers
   A

   --
   echo '16i[q]sa[ln0=aln100%Pln100/snlbx]sbA0D4D465452snlbxq' | dc
   This will help you for 99.9% of your problems ...
--~--~-~--~~~---~--~~
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: Vodafone HTC Magic skin now available for Android Emulator!

2009-02-17 Thread Jackie Lee

OWE! It looks great!

On Wed, Feb 18, 2009 at 7:08 AM, Tea Vui Huang tvhuangs...@gmail.com wrote:

 Vodafone HTC Magic skin now available for Android Emulator!
 http://teavuihuang.com/android

 To install, download and unzip HVGA-P-HTCMagic.zip to the Android
 skin directory, e.g. C:\android-sdk-windows-0.9_beta\tools\lib\images
 \skins. To run the Android emulator with this HTC skin, enter this on
 the command line: emulator -skin HVGA-P-HTCMagic.

 Tea Vui Huang's Android Page
 [The No.1 website for Google Android Emulator Skins]


 




-- 
Regards,
Yuxing LI

--~--~-~--~~~---~--~~
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: Online Android Programming courses

2009-02-17 Thread Jackie Lee

HAHA, I guess the only possible explanation is: You're in bad luck. :)

On Wed, Feb 18, 2009 at 2:53 AM, Faber Fedor faberfe...@gmail.com wrote:
 On Tue, Feb 17, 2009 at 1:15 PM, Mark Murphy mmur...@commonsware.com
 wrote:

 Do you post by Web or by your mail client?

 Web-based posts go into some sort of moderation queue; emailed posts
 appear to get published fairly quickly.

 I post and read via my Gmail account.



 --
 Faber Fedor
 Linux New Jersey
 http://linuxnj.com
 faberfedor.blogspot.com

 




-- 
Regards,
Yuxing LI

--~--~-~--~~~---~--~~
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 to develop vid eo series - Activity (Android开发视频系列--Activ ity)

2009-02-17 Thread SinFrancis

(EN)
The following is a video tutorial Android development master and the
video download Address:
 Course Master:
http://androidos.cc/bbs/viewthread.php?tid=685extra=page%3D1

  Layout:
http://androidos.cc/bbs/viewthread.php?tid=686extra=page%3D1

Activity:
http://androidos.cc/bbs/viewthread.php?tid=696extra=page%3D1


(CN)
以下是Android开发视频教程的总纲和各个视频下载地址:

教程总纲:
http://androidos.cc/bbs/viewthread.php?tid=685extra=page%3D1

Layout:
http://androidos.cc/bbs/viewthread.php?tid=686extra=page%3D1

Activity:
http://androidos.cc/bbs/viewthread.php?tid=696extra=page%3D1



--~--~-~--~~~---~--~~
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: For Androip Queries

2009-02-17 Thread Jackie Lee

androip or android?

On Tue, Feb 17, 2009 at 8:00 PM, sem sharma...@gmail.com wrote:

 Hi ,
  i m the Beginer for Androip development so  let me know how to start
 development in the Androip?

 




-- 
Regards,
Yuxing LI

--~--~-~--~~~---~--~~
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 to develop video series - Activity (Android开发视频系列-- Activity)

2009-02-17 Thread Jackie Lee

master
I think it's context, isn't it?

2009/2/18 SinFrancis kyowxf2...@gmail.com:

 (EN)
 The following is a video tutorial Android development master and the
 video download Address:
  Course Master:
 http://androidos.cc/bbs/viewthread.php?tid=685extra=page%3D1

  Layout:
 http://androidos.cc/bbs/viewthread.php?tid=686extra=page%3D1

 Activity:
 http://androidos.cc/bbs/viewthread.php?tid=696extra=page%3D1


 (CN)
 以下是Android开发视频教程的总纲和各个视频下载地址:

 教程总纲:
 http://androidos.cc/bbs/viewthread.php?tid=685extra=page%3D1

 Layout:
 http://androidos.cc/bbs/viewthread.php?tid=686extra=page%3D1

 Activity:
 http://androidos.cc/bbs/viewthread.php?tid=696extra=page%3D1



 




-- 
Regards,
Yuxing LI

--~--~-~--~~~---~--~~
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: Not able to connect to internet through proxy

2009-02-17 Thread Jackie Lee

you should do it like this:
emulator -http-proxy http://10.55.2.23:80;
add http:// before the site.


On Tue, Feb 17, 2009 at 7:20 PM, Peeyush Jain piiyush.j...@gmail.com wrote:

 Hi,

 I'm trying to connect to internet through proxy using latest android
 emulator (version 1.8). I tried to launch the emulator with

 emulator -http-proxy 10.55.2.23:80

 this option is not working. then I tried with the environment variable

 http_proxy - 10.55.2.23:80

 Even this option is not working.

 I also tried followin SQLite queries.

 sqlite3 /data/data/com.google.android.providers.settings/databases/
 settings.db INSERT INTO system VALUES(99,'http_proxy',
 10.55.2.23:80');


 sqlite3 /data/data/com.google.android.providers.settings/databases/
 settings.db SELECT * FROM system

 Last query returns nothing.

 I'm using Windows XP SP2.

 No Idea about proxy details, as I'm doing this in my office.

 Thanks  Regards,
 Peeyush Jain

 




-- 
Regards,
Yuxing LI

--~--~-~--~~~---~--~~
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 to develop video series - Activity (Android开发视频系列--Activity)

2009-02-17 Thread susanner

I find them can not be download,has anybody tried it?


--


 
 


在2009-02-18,Jackie Lee jackie.sp...@gmail.com 写道:

master
I think it's context, isn't it?

2009/2/18 SinFrancis kyowxf2...@gmail.com:

 (EN)
 The following is a video tutorial Android development master and the
 video download Address:
  Course Master:
 http://androidos.cc/bbs/viewthread.php?tid=685extra=page%3D1

  Layout:
 http://androidos.cc/bbs/viewthread.php?tid=686extra=page%3D1

 Activity:
 http://androidos.cc/bbs/viewthread.php?tid=696extra=page%3D1


 (CN)
 以下是Android开发视频教程的总纲和各个视频下载地址:

 教程总纲:
 http://androidos.cc/bbs/viewthread.php?tid=685extra=page%3D1

 Layout:
 http://androidos.cc/bbs/viewthread.php?tid=686extra=page%3D1

 Activity:
 http://androidos.cc/bbs/viewthread.php?tid=696extra=page%3D1



 




-- 
Regards,
Yuxing LI



--~--~-~--~~~---~--~~
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: Online Android Programming courses

2009-02-17 Thread Faber Fedor
W.C. FieldsGo away,
Nelsonhttp://images.google.com/images?client=safarirls=en-usq=nelson+simpsons+imageoe=UTF-8um=1ie=UTF-8ei=aHebSfimGdWDtwfd8YXoBAsa=Xoi=image_result_groupresnum=1ct=title
.
 You bother me./W.C. Fields
:-)

On Tue, Feb 17, 2009 at 8:47 PM, Jackie Lee jackie.sp...@gmail.com wrote:


 HAHA, I guess the only possible explanation is: You're in bad luck. :)

 On Wed, Feb 18, 2009 at 2:53 AM, Faber Fedor faberfe...@gmail.com wrote:
  On Tue, Feb 17, 2009 at 1:15 PM, Mark Murphy mmur...@commonsware.com
  wrote:
 
  Do you post by Web or by your mail client?
 
  Web-based posts go into some sort of moderation queue; emailed posts
  appear to get published fairly quickly.
 
  I post and read via my Gmail account.
 
 
 
  --
  Faber Fedor
  Linux New Jersey
  http://linuxnj.com
  faberfedor.blogspot.com
 
  
 



 --
 Regards,
 Yuxing LI

 



-- 
Faber Fedor
Linux New Jersey
http://linuxnj.com
faberfedor.blogspot.com

--~--~-~--~~~---~--~~
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: Not able to connect to internet through proxy

2009-02-17 Thread Peeyush Jain

Hi Jackie,

Thanks for reply.

Internet is working with http_proxy envirnment variable. but some
sites are not opened on emulator.

I don't know why this is happening. This might be related to proxy.

Thanks  Regards,
Peeyush Jain
--~--~-~--~~~---~--~~
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] Do we need UAProf/x-wap-profile in Android.

2009-02-17 Thread OOD Tsen

After tracing the code of android , I can not found the UAProf /-x-wap-
profile in RTSP message

Where can I find the url of G1 UAprof


--~--~-~--~~~---~--~~
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: For Androip Queries

2009-02-17 Thread Peeyush Jain

Hi Sem,

You can start reading from http://developer.android.com.

It seems the best resource available for the Android Development.

Thanks  Regards,
Peeyush Jain
--~--~-~--~~~---~--~~
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] Will [all] attachments be included with email

2009-02-17 Thread Rob Campbell

I have txtract and that attaches its file to an email before sending
so I know the mail client doesn't prevent it, it just doesn't
currently allow for it.  Is this going to be allowed soon.  In this
market I need to be able to send my resume at a moments notice to
anyone.

--~--~-~--~~~---~--~~
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] Error when trying to output logcat to a a external file

2009-02-17 Thread Android Beginner

Hi,
I am trying to capture logs when emulator starts and I am issuing the
following command
 ./adb logcat -f ~/androidlog in order to output the logs to the
external file androidlog in my home directory.

However I gives an error that couldn't open output file: No such file
or directory.

I dont know why the error is coming as I have created the file. Any
help is appreciated? If there any other way I can get the outputs of
the logs to the external file.



--~--~-~--~~~---~--~~
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 ecplise plugin site is unreachable

2009-02-17 Thread Leeall

eclipse plugin site:https://dl-ssl.google.com/android/eclipse/ is
unreachable now.
Any guy know why? 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] setting a listview height when items are below it

2009-02-17 Thread dds

I'm displaying a ListView with a view containing a button anchored at
the bottom of the screen below it.  Whether I use fill_parent or
wrap_content for the height of the ListView, it still extends down
behind the 'footer' at the bottom of the screen (which makes sense,
thinking about what they mean).

I was thinking I could programatically use getHeight() against the
'footer', and then set the height of the ListView after getting the
screen height and doing the math.  I don't see how to programatically
set that ListView height after the layout has inflated.

Any pointers?  Layout is below.

Thanks!
dds

?xml version=1.0 encoding=utf-8?
RelativeLayout xmlns:android=http://schemas.android.com/apk/res/
android
android:layout_width=fill_parent
android:layout_height=fill_parent
android:orientation=vertical

ListView xmlns:android=http://schemas.android.com/apk/res/android;
android:id=@+id/list
android:layout_width=fill_parent
android:layout_height=wrap_content

/ListView
RelativeLayout xmlns:android=http://schemas.android.com/apk/res/
android
android:layout_width=fill_parent
android:layout_height=50sp
android:layout_alignParentBottom=true
android:background=#676767
android:orientation=vertical

Button xmlns:android=http://schemas.android.com/apk/res/android;
android:id=@+id/closebutton
android:layout_width=120sp
android:layout_height=wrap_content
android:layout_centerHorizontal=true
android:layout_alignParentBottom=true
android:text=@string/ui_contact_list_close_str
/
/RelativeLayout
/RelativeLayout

--~--~-~--~~~---~--~~
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: Vodafone HTC Magic skin now available for Android Emulator!

2009-02-17 Thread jimbo

Looks great. Thanks!

One catch - using the eclipse plug-in for Android development:

[2009-02-17 21:16:42 - Emulator] failed to load image file
'[PATH_TO_YOUR_SKIN_DIRECTORY]//background.png'

background.png is actually named background.PNG. Changing the file
extension from .PNG to .png got it working just fine.

Once again, nice looking skin.

On Feb 17, 7:30 pm, Jackie Lee jackie.sp...@gmail.com wrote:
 OWE! It looks great!

 On Wed, Feb 18, 2009 at 7:08 AM, Tea Vui Huang tvhuangs...@gmail.com wrote:



  Vodafone HTC Magic skin now available for Android Emulator!
 http://teavuihuang.com/android

  To install, download and unzip HVGA-P-HTCMagic.zip to the Android
  skin directory, e.g. C:\android-sdk-windows-0.9_beta\tools\lib\images
  \skins. To run the Android emulator with this HTC skin, enter this on
  the command line: emulator -skin HVGA-P-HTCMagic.

  Tea Vui Huang's Android Page
  [The No.1 website for Google Android Emulator Skins]

 --
 Regards,
 Yuxing LI

--~--~-~--~~~---~--~~
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: setting a listview height when items are below it

2009-02-17 Thread Romain Guy

Give the second RelativeLayout an id (for instance
android:id=@+id/footer) and then on your ListView use:

android:layout_height=0dip
android:layout_alignParentTop=true
android:layout_above=@id/footer

On Tue, Feb 17, 2009 at 1:50 PM, dds spen...@deepdarksee.com wrote:

 I'm displaying a ListView with a view containing a button anchored at
 the bottom of the screen below it.  Whether I use fill_parent or
 wrap_content for the height of the ListView, it still extends down
 behind the 'footer' at the bottom of the screen (which makes sense,
 thinking about what they mean).

 I was thinking I could programatically use getHeight() against the
 'footer', and then set the height of the ListView after getting the
 screen height and doing the math.  I don't see how to programatically
 set that ListView height after the layout has inflated.

 Any pointers?  Layout is below.

 Thanks!
 dds

 ?xml version=1.0 encoding=utf-8?
 RelativeLayout xmlns:android=http://schemas.android.com/apk/res/
 android
 android:layout_width=fill_parent
 android:layout_height=fill_parent
 android:orientation=vertical

 ListView xmlns:android=http://schemas.android.com/apk/res/android;
 android:id=@+id/list
 android:layout_width=fill_parent
 android:layout_height=wrap_content

 /ListView
 RelativeLayout xmlns:android=http://schemas.android.com/apk/res/
 android
 android:layout_width=fill_parent
 android:layout_height=50sp
 android:layout_alignParentBottom=true
 android:background=#676767
 android:orientation=vertical

Button xmlns:android=http://schemas.android.com/apk/res/android;
android:id=@+id/closebutton
android:layout_width=120sp
android:layout_height=wrap_content
android:layout_centerHorizontal=true
android:layout_alignParentBottom=true
android:text=@string/ui_contact_list_close_str
/
 /RelativeLayout
 /RelativeLayout

 




-- 
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] Re: Android to develop video series - Activity (Android开发视频系列-- Activity)

2009-02-17 Thread 心蓝
U can download it by RAYSOURCE or from the web address

2009/2/18 Jackie Lee jackie.sp...@gmail.com


 The video tutorial can only be downloaded by RAYSOURCE tool.
 and you need to reply the thread to see the download address,
 according to the author.

 2009/2/18 susanner zsusan...@163.com:
 
  I find them can not be download,has anybody tried it?
 
  --
 
 
 
 
  在2009-02-18,Jackie Lee jackie.sp...@gmail.com 写道:
 
 master
 I think it's context, isn't it?
 
 2009/2/18 SinFrancis kyowxf2...@gmail.com:
 
  (EN)
  The following is a video tutorial Android development master and the
  video download Address:
   Course Master:
  http://androidos.cc/bbs/viewthread.php?tid=685extra=page%3D1
 
   Layout:
  http://androidos.cc/bbs/viewthread.php?tid=686extra=page%3D1
 
  Activity:
  http://androidos.cc/bbs/viewthread.php?tid=696extra=page%3D1
 
 
  (CN)
  以下是Android开发视频教程的总纲和各个视频下载地址:
 
  教程总纲:
  http://androidos.cc/bbs/viewthread.php?tid=685extra=page%3D1
 
  Layout:
  http://androidos.cc/bbs/viewthread.php?tid=686extra=page%3D1
 
  Activity:
  http://androidos.cc/bbs/viewthread.php?tid=696extra=page%3D1
 
 
 
  
 
 
 
 
 --
 Regards,
 Yuxing LI
 
 
 
 
  
  网易邮箱,中国第一大电子邮件服务商 
 



 --
 Regards,
 Yuxing LI

 



-- 


王心锋
Software Engineer/AndroidOS Creator
Email: kyowxf2...@gmail.com| Web: http://androidos.cc| Community:
http://androidos.cc/bbs
Tel:0551-2341751 Mobile: 13485512230
Address: 34#503,7#602 ShuNanTingYuan, WangJiang Road,HeFei City,An Hui
Province

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