[android-beginners] abd error

2010-01-11 Thread Rc3375
Just did a new install on another laptop.  Running abd from eclipse
(not the command prompt). Android sdks are all installed correctly,
1.5,2.0.etc.  whenever eclipse first fires up, the error message
is:"unable to parse adb version."
BUT if you try and run the app(with one I called (nomaps) and look to
see if the app is included in that particular build, it actually is.
The emulator fires up and about an hour laterNOTHING shows up on
the emulator(anywhere). All the tools are availabe and are all the
proper directories. The path in windows7 is also been checked, and is
correct.  The appname.APK is being built in the correct directory as
well, with the new time and date.  Don't know who might of answered
earlier for this post, but I had accidently deleted any responses.
Whom ever it might of been, could you please repost any responses that
might of been made in response to this problem, and once again, thanks
for all the help and assistanceRc3375
-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

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 2.1 SDK

2010-01-11 Thread Casper Bang
It says here [http://developer.android.com/sdk/eclipse-adt.html] to
add Android support to Eclipse by adding the following URL:
https://dl-ssl.google.com/android/eclipse/

However not much is happening. Indeed, navigating the above URL
results in a 404. What gives... is this deprecated documentation or is
the site down?

/Casper
-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Android 2.1 SDK

2010-01-11 Thread ryan alford
Only a week after devices using this version were released.

Ryan

Sent from my DROID

On Jan 11, 2010 6:24 PM, "Xavier Ducrohet"  wrote:

Hello everyone,

We've just released the 2.1 SDK.

More info:
http://android-developers.blogspot.com/2010/01/android-21-sdk.html

Enjoy!

Xav
--
Xavier Ducrohet
Android SDK Tech Lead
Google Inc.

Please do not send me questions directly. Thanks!

--
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

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 2.1 SDK

2010-01-11 Thread Xavier Ducrohet
Hello everyone,

We've just released the 2.1 SDK.

More info: http://android-developers.blogspot.com/2010/01/android-21-sdk.html

Enjoy!

Xav
-- 
Xavier Ducrohet
Android SDK Tech Lead
Google Inc.

Please do not send me questions directly. Thanks!
-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

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: Query on committing changes to content providers

2010-01-11 Thread Kowsh
Here is my manifest file for your reference :


http://schemas.android.com/apk/res/android";
package="com.golf" android:versionCode="1" android:versionName="1.0">
















Thanks,
Kowshik

On Jan 11, 11:32 pm, Kowsh  wrote:
> Hi,
>
> I am trying to write a simple app for my G1 phone that runs Android
> 1.6. The app should be able to access and modify the Contacts list at
> runtime.
>
> I configured my android project in eclipse with API level 4 for 1.6. I
> set read and write "user permissions" in the android manifest file and
> I tried using the following code to commit changes to the Contacts
> list in the onCreate(...) method of my Activitiy class :
>
> public class GolfScore extends Activity {
>         public void onCreate(Bundle savedInstanceState) {
>                 super.onCreate(savedInstanceState);
>                 setContentView(R.layout.main);
>
>                ContentValues values = new ContentValues();
>
>                 //Set NAME for new contact
>                 values.put(People.NAME, "John Mogambo");
>                 //Add contact to 'Favourites' list
>                 values.put(People.STARRED, "1");
>
>                 //Commit changes
>                 ContentResolver contRes= getContentResolver();
>                 contRes.insert(People.CONTENT_URI, values);
>       }
>
> }
>
> I find that when I minimise my app at runtime in the emulator and open
> the contacts app, the new contact : "John Mogambo" has been added to
> "Favourites" list alone. It doesnt figure in the main list of
> contacts.
>
> I would be grateful if somebody could point out whats missing in my
> code.
>
> Thanks,
> Kowshik
-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

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] Query on committing changes to content providers

2010-01-11 Thread Kowsh
Hi,

I am trying to write a simple app for my G1 phone that runs Android
1.6. The app should be able to access and modify the Contacts list at
runtime.

I configured my android project in eclipse with API level 4 for 1.6. I
set read and write "user permissions" in the android manifest file and
I tried using the following code to commit changes to the Contacts
list in the onCreate(...) method of my Activitiy class :

public class GolfScore extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

   ContentValues values = new ContentValues();

//Set NAME for new contact
values.put(People.NAME, "John Mogambo");
//Add contact to 'Favourites' list
values.put(People.STARRED, "1");

//Commit changes
ContentResolver contRes= getContentResolver();
contRes.insert(People.CONTENT_URI, values);
  }
}


I find that when I minimise my app at runtime in the emulator and open
the contacts app, the new contact : "John Mogambo" has been added to
"Favourites" list alone. It doesnt figure in the main list of
contacts.

I would be grateful if somebody could point out whats missing in my
code.


Thanks,
Kowshik
-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

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] In The P.I. – Palawan

2010-01-11 Thread The AllSetter
Also known as “The Island of the Gods”, Palawan is the most well-
preserved island treasures in the Philippines. With its pristine
beaches, spectacular seascapes, unworldly caves and subterranean
rivers, amazing wildlife, hospitable locals and five-star hotels and
resorts, Palawan has become a world-class destination for travelers
from all around the globe and a must-visit for Filipinos.



Although it is most popular for the Tubbataha Reef – nominated as one
of the New 7 Wonders of Nature, alongside with Bicol’s Mayon Volcano
and Bohol’s Chocolate Hills – the island offers so much more to see
and experience. Composed of almost 1,700 islands and islets and 2,000
kilometers of coastline, Palawan has treasures that are waiting to
mesmerize you.

View full article on:
http://allsetter.wordpress.com/
-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Launching Browser in Preference Activity.

2010-01-11 Thread Sean Hodges
Please don't cross-post to multiple mailing lists. It means people get
your question more than once, and can cause multiple conversations on
different lists. Post to android-beginners if you're not sure, then
send to android-developers if no-one has an answer for you.

The question has been answered here:

http://groups.google.com/group/android-developers/browse_thread/thread/ab628ade25077cdf?hl=en


On Mon, Jan 11, 2010 at 12:09 PM, Manjunatha M  wrote:
> Hi folks,
> I want to List Item in Preference activity. and I want to launch a Browser
> with a URL which can change dynamically, When I click on that Item. Can
> anyone let me know how can i Achieve???
> --
> Regards,
> Manjunatha
>
> --
> You received this message because you are subscribed to the Google
> Groups "Android Beginners" group.
>
> NEW! Try asking and tagging your question on Stack Overflow at
> http://stackoverflow.com/questions/tagged/android
>
> To unsubscribe from this group, send email to
> android-beginners+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-beginners?hl=en
>
>
-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

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] Launching Browser in Preference Activity.

2010-01-11 Thread Manjunatha M
Hi folks,
I want to List Item in Preference activity. and I want to launch a Browser
with a URL which can change dynamically, When I click on that Item. Can
anyone let me know how can i Achieve???

-- 
Regards,
Manjunatha
-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

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