[android-beginners] Bringing an Activity to the from when notification is tapped

2010-07-21 Thread Antti Karhu
Hi!

My app is having an Activity, and a local Service. The Service shows
notifications for time to time, and I like to open the Activity when the
notification is tapped. Now the problem is, I may get multiple activies
stacked if I tap the notifications many times in a row. Here's how I show
the notification:

final NotificationManager notificationManager = (NotificationManager)
getSystemService(NOTIFICATION_SERVICE);

Notification notification = new Notification(R.drawable.icon, "Hello",
System
.currentTimeMillis());

notification.flags |= Notification.FLAG_ONGOING_EVENT;
notification.flags |= Notification.FLAG_NO_CLEAR;

Intent intent = new Intent(this, MyActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT
| Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
PendingIntent i = PendingIntent.getActivity(this, 0, intent, 0);

notification.setLatestEventInfo(this, "Hello", "Hello", i);

notificationManager.notify(NOTIFICATION_ID, notification);

Any suggestions how to just bring the Activity to the front if it already
exists?

Br,
Antti

-- 
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] Why it is so difficult to generate gen file

2010-07-21 Thread Shaista Naaz
Hey Hi,

I got it up and running. Thanks,

Shaista

On Thu, Jul 22, 2010 at 11:34 AM, Shaista Naaz wrote:

>
> Hi,
> I am a beginner trying to learn Android. I am trying to run Hello Android
> sample code but am facing one problem with generation of gen file.
> Sometimes it works after I do repeated clean, rebuild and build
> automatically on and off.
>
> I have installed android-sdk_r06-windows, eclipse-java-galileo-win32 and
> jdk-6u21-windows-i586.
> While creating Hello Android I am selecting Android 1.1 as SDK. I have
> given PATH variable of SDK only not for java.
> And I am working on Windows.
>
> If my simple Hello Android succeeds in generating R.java and then I make
> any changes in the main.xml and string.xml then again gen cannot be created.
> I am following file
>
> file:///D:/Android/android-sdk_r06-windows/android-sdk-windows/docs/resources/tutorials/hello-world.html
>
> Any help is highly appreciated.
>
> Thanks,
> Shaista
>
>

-- 
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] Why it is so difficult to generate gen file

2010-07-21 Thread Shaista Naaz
Hi,
I am a beginner trying to learn Android. I am trying to run Hello Android
sample code but am facing one problem with generation of gen file.
Sometimes it works after I do repeated clean, rebuild and build
automatically on and off.

I have installed android-sdk_r06-windows, eclipse-java-galileo-win32 and
jdk-6u21-windows-i586.
While creating Hello Android I am selecting Android 1.1 as SDK. I have given
PATH variable of SDK only not for java.
And I am working on Windows.

If my simple Hello Android succeeds in generating R.java and then I make any
changes in the main.xml and string.xml then again gen cannot be created.
I am following file
file:///D:/Android/android-sdk_r06-windows/android-sdk-windows/docs/resources/tutorials/hello-world.html

Any help is highly appreciated.

Thanks,
Shaista

-- 
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] Why it is so difficult to generate gen file

2010-07-21 Thread Shaista Naaz
Hi,
I am a beginner trying to learn Android. I am trying to run Hello Android
sample code but am facing one problem with generation of gen file.
Sometimes it works after I do repeated clean, rebuild and build
automatically on and off.

I have installed android-sdk_r06-windows, eclipse-java-galileo-win32 and
jdk-6u21-windows-i586.
While creating Hello Android I am selecting Android 1.1 as SDK. I have given
PATH variable of SDK only not for java.
And I am working on Windows.

If my simple Hello Android succeeds in generating R.java and then I make any
changes in the main.xml and string.xml then again gen cannot be created.
I am following file
file:///D:/Android/android-sdk_r06-windows/android-sdk-windows/docs/resources/tutorials/hello-world.html

Any help is highly appreciated.

Thanks,
Shaista

-- 
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] listview dropdown

2010-07-21 Thread Raul Martinez
i was looking through the reference on the android site and found what i was
looking for
http://developer.android.com/reference/android/widget/ExpandableListAdapter.html
:)
thanks for the help

On Thu, Jul 22, 2010 at 12:23 AM, Justin Anderson
wrote:

> Have you done any research yourself on this?
>
> Just doing a simple search for "android listview onclick" gave me several
> results:
>
> *Searching Google:
> *http://www.androidpeople.com/android-listview-onclick/*
> *
> http://www.softwarepassion.com/android-series-custom-listview-items-and-adapters/
> *
>
> Searching StackOverflow:
> *
> http://stackoverflow.com/questions/3081986/open-a-custom-dialog-when-clicking-on-a-listview-entry
>
> http://stackoverflow.com/questions/1121192/android-custom-listview-unable-to-click-on-items
>
> http://stackoverflow.com/questions/2898214/android-how-to-set-click-events-on-listview
>
> *Searching this Google Group*:
>
> http://groups.google.com/group/android-beginners/browse_thread/thread/d9fe83f80651a993/560b63550978e72c?lnk=gst&q=android+listview+click#560b63550978e72c
>
>
> http://groups.google.com/group/android-beginners/browse_thread/thread/14fa86edf7a865c9/e73d58c4c2ff?lnk=gst&q=android+listview+click#e73d58c4c2ff
>
> So, I just spent five minutes doing searches and came up with at least
> seven possible links that can help... It doesn't hurt to do a little work
> yourself before posting a question here.
>
> Hope that helps,
> Justin
>
> *
> *--
> There are only 10 types of people in the world...
> Those who know binary and those who don't.
> --
>
>
> On Wed, Jul 21, 2010 at 10:30 PM, Raul Martinez wrote:
>
>>  i have a list and when i click it i want it to open up with a drowdown of
>> the description of the item, is there a tutorial on that?
>>
>> --
>> 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
>

-- 
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] Google Image on Google map

2010-07-21 Thread TreKing
On Wed, Jul 21, 2010 at 2:38 AM, NBS  wrote:

> Could anyone suggest me how I can hide the Google image.  OR is there
> anyway to draw that image.
>

You have no control over this image. Some phones are known to have issues
with Google Maps, sometimes showing a red square where that logo is supposed
to be.

What difference does it make if it shows up or not anyway?

-
TreKing  - Chicago
transit tracking app for Android-powered devices

-- 
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] listview dropdown

2010-07-21 Thread Raul Martinez
I tried but I guess I was using the wrong terms, thanks

On Jul 22, 2010 12:25 AM, "Justin Anderson"  wrote:

I was wrong about my search terms becaues I realized that "onclick" might be
something that only a more seasoned android developer would think of
searching.  The search terms for the links I posted in my last message were
simply:

android listview click



Hope that helps,
Justin
--
The...

On Wed, Jul 21, 2010 at 11:23 PM, Justin Anderson 
wrote:
>
> Have you done...

-- 
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] listview dropdown

2010-07-21 Thread Justin Anderson
I was wrong about my search terms becaues I realized that "onclick" might be
something that only a more seasoned android developer would think of
searching.  The search terms for the links I posted in my last message were
simply:

android listview click

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


On Wed, Jul 21, 2010 at 11:23 PM, Justin Anderson
wrote:

> Have you done any research yourself on this?
>
> Just doing a simple search for "android listview onclick" gave me several
> results:
>
> *Searching Google:
> *http://www.androidpeople.com/android-listview-onclick/*
> *
> http://www.softwarepassion.com/android-series-custom-listview-items-and-adapters/
> *
>
> Searching StackOverflow:
> *
> http://stackoverflow.com/questions/3081986/open-a-custom-dialog-when-clicking-on-a-listview-entry
>
> http://stackoverflow.com/questions/1121192/android-custom-listview-unable-to-click-on-items
>
> http://stackoverflow.com/questions/2898214/android-how-to-set-click-events-on-listview
>
> *Searching this Google Group*:
>
> http://groups.google.com/group/android-beginners/browse_thread/thread/d9fe83f80651a993/560b63550978e72c?lnk=gst&q=android+listview+click#560b63550978e72c
>
>
> http://groups.google.com/group/android-beginners/browse_thread/thread/14fa86edf7a865c9/e73d58c4c2ff?lnk=gst&q=android+listview+click#e73d58c4c2ff
>
> So, I just spent five minutes doing searches and came up with at least
> seven possible links that can help... It doesn't hurt to do a little work
> yourself before posting a question here.
>
> Hope that helps,
> Justin
>
> *
> *--
> There are only 10 types of people in the world...
> Those who know binary and those who don't.
> --
>
>
>
> On Wed, Jul 21, 2010 at 10:30 PM, Raul Martinez wrote:
>
>> i have a list and when i click it i want it to open up with a drowdown of
>> the description of the item, is there a tutorial on that?
>>
>> --
>> 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


Re: [android-beginners] listview dropdown

2010-07-21 Thread Justin Anderson
Have you done any research yourself on this?

Just doing a simple search for "android listview onclick" gave me several
results:

*Searching Google:
*http://www.androidpeople.com/android-listview-onclick/*
*
http://www.softwarepassion.com/android-series-custom-listview-items-and-adapters/
*

Searching StackOverflow:
*
http://stackoverflow.com/questions/3081986/open-a-custom-dialog-when-clicking-on-a-listview-entry
http://stackoverflow.com/questions/1121192/android-custom-listview-unable-to-click-on-items
http://stackoverflow.com/questions/2898214/android-how-to-set-click-events-on-listview

*Searching this Google Group*:
http://groups.google.com/group/android-beginners/browse_thread/thread/d9fe83f80651a993/560b63550978e72c?lnk=gst&q=android+listview+click#560b63550978e72c

http://groups.google.com/group/android-beginners/browse_thread/thread/14fa86edf7a865c9/e73d58c4c2ff?lnk=gst&q=android+listview+click#e73d58c4c2ff

So, I just spent five minutes doing searches and came up with at least seven
possible links that can help... It doesn't hurt to do a little work yourself
before posting a question here.

Hope that helps,
Justin

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


On Wed, Jul 21, 2010 at 10:30 PM, Raul Martinez  wrote:

> i have a list and when i click it i want it to open up with a drowdown of
> the description of the item, is there a tutorial on that?
>
> --
> 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


Re: [android-beginners] android tutorial question

2010-07-21 Thread Justin Anderson
*> I was just going through the below tutorial *
The link you gave isn't a tutorial...  It is just a class.  There is a huge
difference.

*> got a little confused on how to use this code because the class in the
below example url is not extended by activity base class*
You are correct.  It inherits from the Animation class:
http://developer.android.com/reference/android/view/animation/Animation.html

*> so how do i consume it*
This doesn't really make sense, but if you are wondering how to use it, it
is an "Animation that can be applied to Views, Surfaces, or some other
objects" (quote taken from the link above)

Also, the API Demos provides a sample class that uses this:
http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/animation/Transition3d.html

I'm a little surprised that you didn't find this example considering that
you get to both of these links by doing the following:

   - Go to developer.android.com
   - Click on the Resources link
   - Click on the API Demos link
   - Click on the Animation link
   - This page has both the link you gave me and the link I gave you with
   the example of how to use it


Hope that helps,
Justin

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


On Wed, Jul 21, 2010 at 4:15 PM, Amit Sood  wrote:

> Hello Experts,
>
> I was just going through the below tutorial and got a little confused
> on how to use this code because the class in the below example url is
> not extended by activity base class, so how do i consume it
>
> Please advise
>
>
> http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/animation/Rotate3dAnimation.html
>
> --
> 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


Re: [android-beginners] vertical Scrollbar in linearlayout not working

2010-07-21 Thread Justin Anderson
The xmlns attribute needs to move to ScrollView because it always has to be
declared in the first tag after the ?xml tag.  You also need to specify the
layout width and layout height for the ScrollView.

I may be wrong that the xmlns attribute needs to be moved to the
ScrollView... I just always make sure it goes in the first tag out of
habit.  But you definitely need the width and height settings... If you
don't specify them the app will crash.

From:
http://developer.android.com/guide/topics/resources/layout-resource.html
android:layout_height *Dimension or keyword*. *Required*. The height for the
group, as a dimension value (or dimension
resource)
or a keyword ("fill_parent" or "wrap_content"). See the valid
valuesbelow.
android:layout_width*Dimension or keyword*. *Required*. The width for the
group, as a dimension value (or dimension
resource)
or a keyword ("fill_parent" or "wrap_content"). See the valid
valuesbelow.
Hope that helps,
Justin

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


On Wed, Jul 21, 2010 at 3:39 PM, Amit Sood  wrote:

> Justin,
>
> Thanks for the reply.
>
> I did add the scroll view in the xml but the application is crashing now.
> Please find the updated below and please advice
>
>
>
> 
>  
>
> http://schemas.android.com/apk/res/android";
> android:orientation="vertical"
> android:layout_width="fill_parent"
> android:layout_height="wrap_content"
> >
>  android:text="@string/HeaderText"
> android:layout_width="fill_parent"
> android:layout_height="wrap_content">
> 
>  android:id="@+id/btnLinear"
> android:text="@string/Linear_Layout"
> android:layout_width="fill_parent"
> android:layout_height="wrap_content">
> 
>  android:id="@+id/btnRelative"
> android:text="@string/Relative_Layout"
> android:layout_width="fill_parent"
> android:layout_height="wrap_content">
> 
>  android:id="@+id/btnTable"
> android:text="@string/Table_Layout"
> android:layout_width="fill_parent"
> android:layout_height="wrap_content"
> >
>  android:id="@+id/btnGrid"
> android:text="@string/Grid_Layout"
> android:layout_width="fill_parent"
> android:layout_height="wrap_content"
> >
>  android:id="@+id/btnTab"
> android:text="Click me to for tab layout"
> android:layout_width="fill_parent"
> android:layout_height="wrap_content">
> 
>  android:id="@+id/btnList"
> android:text="Click me for List view"
> android:layout_width="fill_parent"
> android:layout_height="wrap_content">
> 
>  android:src="@drawable/imgbutton"
> android:layout_width="wrap_content"
> android:layout_height="wrap_content">
>
>   android:id="@+id/btnImage"
> android:src="@drawable/imgbutton"
> android:layout_width="match_parent"
>
> android:layout_height="wrap_content">
>   android:id="@+id/btnMenu"
> android:text="Menu Demos"
> android:layout_width="fill_parent"
> android:layout_height="wrap_content">
> 
>  android:id="@+id/btnGraphics"
> android:text="2D Graphics"
> android:layout_width="fill_parent"
> android:layout_height="wrap_content">
> 
>  android:id="@+id/btnUIEvents"
> android:text="UI Events"
> android:layout_width="fill_parent"
> android:layout_height="wrap_content">
> 
>
> 
> 
>
> On Thu, Jul 22, 2010 at 2:56 AM, Justin Anderson 
> wrote:
>
>> Wrap the LinearLayout in a ScrollView and take the  following line out of
>> LinearLayout:
>> android:scrollbars="vertical"
>>
>> Not sure if that is the best or recommended way but that is how I did it
>> in my app...
>>
>> --
>> There are only 10 types of people in the world...
>> Those who know binary and those who don't.
>> --
>>
>>
>>
>> On Wed, Jul 21, 2010 at 3:13 PM, Amit Sood  wrote:
>>
>>> Hello Experts,
>>>
>>> I have a linear layout in which i have many buttons. As i m adding
>>> more to it the layout is not bring its scroll so i cannot see my newly
>>> added buttons
>>>
>>> XML for the layout is below.
>>>
>>> Please advice
>>>
>>> 
>>>
>>> http://schemas.android.com/apk/re

[android-beginners] listview dropdown

2010-07-21 Thread Raul Martinez
i have a list and when i click it i want it to open up with a drowdown of
the description of the item, is there a tutorial on that?

-- 
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 Doubt] ListView inside Layout with Scroll

2010-07-21 Thread TreKing
On Tue, Jul 20, 2010 at 12:25 PM, Carlos Junior
wrote:

> If a have some components in my screen and a listView in the end how
> could I scroll the entire screen?
>

You can't.


>  LinearLayout does not support scroll right?
>

No, usually you wrap it in a ScrollView.


>  Besides, ListView inside ScrollView is a bad idea,
>

It's not a "bad idea" as much as "it doesn't work".


> so I ask the android experts, how this problem could be solved?
>

Write your own containers? Good luck with that.


> Example of layout:
> 
> 
> 
>  
> 
> 
>
> Is android incompatible with this kind of screen?
>

Not at all. This will work fine - just that the only thing that will scroll
is the ListView.

-
TreKing  - Chicago
transit tracking app for Android-powered devices

-- 
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: null intent returned in onActivityResult

2010-07-21 Thread Bret Foreman
Mark, you scored again. That worked perfectly. I owe you lunch. Do you
sit in the Bay Area?

-- 
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: Debug Keystore Password Wrong? HELP!!!

2010-07-21 Thread Johnb


On Jul 20, 10:56 am, Xavier Ducrohet  wrote:
> Thepasswordhas not changed, we still use android for the debugkeystore.
>
> Xav
>
>
>
> On Tue, Jul 20, 2010 at 1:05 AM, Johnb  wrote:
> > If i can get any help it would be great.  I am trying to just run the
> > debug mode with the keytool and i enter theKeystorepasswordfrom
> > Android which is "android" and it tells me that thepasswordis
> > wrong.  What Do i do about this problem so i can get the MD5
> > fingerprint in order to get my API key for the google map for debug
> > mode.  Any help would be greatly appreciated as i get to where it asks
> > for thepasswordand apparently android doesn't work anymore.
>
> > --
> > 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
>
> --
> Xavier Ducrohet
> Android SDK Tech Lead
> Google Inc.
>
> Please do not send me questions directly. Thanks!

I appreciate it.  Is there anything i can do to get this to work?  I
tried to create my own keystore and I am getting the same io exception
saying the keystore was tampered with or the password was wrong and i
know it is the correct password.  What else can i do here??

-- 
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] null intent returned in onActivityResult

2010-07-21 Thread Mark Murphy
Use setResult(RESULT_OK, myIntent) and get rid of the
createPendingResult() call. Also, you probably do not need the action
or the class on that Intent.

On Wed, Jul 21, 2010 at 9:21 PM, Bret Foreman  wrote:
> I'm getting a null Intent returned from onActivityResult. A summary of
> the code is listed below. Any ideas what I might be doing wrong?
>
> Code in calling Activity:
>
>                Intent myIntent = new Intent( Intent.ACTION_VIEW );
>                myIntent.setClass(this,TheCalledActivity.class);
>                startActivityForResult( myIntent , SORT_PREFERENCES_CHANGED );
>
> Code in called Activity:
>                commitButton.setOnClickListener( new View.OnClickListener() {
>                        public void onClick(View v) {
>                                Intent myIntent = new 
> Intent(Intent.ACTION_VIEW);
>                                myIntent.setClass( v.getContext() , 
> TheCallingActivity.class );
>                                setResult(Activity.RESULT_OK);
>                                
> createPendingResult(0,myIntent,PendingIntent.FLAG_ONE_SHOT);
>                                finish();
>            }
>                });
>
>
> Code in calling Activity:
>
>       �...@override
>        protected void onActivityResult(int requestCode, int resultCode,
> Intent data) {
>                // data is coming back as null.
>        }

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://github.com/commonsguy
http://commonsware.com/blog | http://twitter.com/commonsguy

_The Busy Coder's Guide to Android Development_ Version 3.1 Available!

-- 
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] null intent returned in onActivityResult

2010-07-21 Thread Bret Foreman
I'm getting a null Intent returned from onActivityResult. A summary of
the code is listed below. Any ideas what I might be doing wrong?

Code in calling Activity:

Intent myIntent = new Intent( Intent.ACTION_VIEW );
myIntent.setClass(this,TheCalledActivity.class);
startActivityForResult( myIntent , SORT_PREFERENCES_CHANGED );

Code in called Activity:
commitButton.setOnClickListener( new View.OnClickListener() {
public void onClick(View v) {
Intent myIntent = new 
Intent(Intent.ACTION_VIEW);
myIntent.setClass( v.getContext() , 
TheCallingActivity.class );
setResult(Activity.RESULT_OK);

createPendingResult(0,myIntent,PendingIntent.FLAG_ONE_SHOT);
finish();
}
});


Code in calling Activity:

@Override
protected void onActivityResult(int requestCode, int resultCode,
Intent data) {
// data is coming back as null.
}

-- 
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 tutorial question

2010-07-21 Thread Amit Sood
Hello Experts,

I was just going through the below tutorial and got a little confused
on how to use this code because the class in the below example url is
not extended by activity base class, so how do i consume it

Please advise

http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/animation/Rotate3dAnimation.html

-- 
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] vertical Scrollbar in linearlayout not working

2010-07-21 Thread Amit Sood
Justin,

Thanks for the reply.

I did add the scroll view in the xml but the application is crashing now.
Please find the updated below and please advice




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













 










On Thu, Jul 22, 2010 at 2:56 AM, Justin Anderson wrote:

> Wrap the LinearLayout in a ScrollView and take the  following line out of
> LinearLayout:
> android:scrollbars="vertical"
>
> Not sure if that is the best or recommended way but that is how I did it in
> my app...
>
> --
> There are only 10 types of people in the world...
> Those who know binary and those who don't.
> --
>
>
>
> On Wed, Jul 21, 2010 at 3:13 PM, Amit Sood  wrote:
>
>> Hello Experts,
>>
>> I have a linear layout in which i have many buttons. As i m adding
>> more to it the layout is not bring its scroll so i cannot see my newly
>> added buttons
>>
>> XML for the layout is below.
>>
>> Please advice
>>
>> 
>>
>> http://schemas.android.com/apk/res/
>> android"
>>android:orientation="vertical"
>>android:layout_width="fill_parent"
>>android:scrollbars="vertical"
>>android:layout_height="wrap_content"
>>>
>>>android:text="@string/HeaderText"
>>android:layout_width="fill_parent"
>>android:layout_height="wrap_content">
>>
>>>android:id="@+id/btnLinear"
>>android:text="@string/Linear_Layout"
>>android:layout_width="fill_parent"
>>android:layout_height="wrap_content">
>>
>>>android:id="@+id/btnRelative"
>>android:text="@string/Relative_Layout"
>>android:layout_width="fill_parent"
>>android:layout_height="wrap_content">
>>
>>>android:id="@+id/btnTable"
>>android:text="@string/Table_Layout"
>>android:layout_width="fill_parent"
>>android:layout_height="wrap_content"
>>>
>>>android:id="@+id/btnGrid"
>>android:text="@string/Grid_Layout"
>>android:layout_width="fill_parent"
>>android:layout_height="wrap_content"
>>>
>>>android:id="@+id/btnTab"
>>android:text="Click me to for tab layout"
>>android:layout_width="fill_parent"
>>android:layout_height="wrap_content">
>>
>>>android:id="@+id/btnList"
>>android:text="Click me for List view"
>>android:layout_width="fill_parent"
>>android:layout_height="wrap_content">
>>
>>>android:id="@+id/btnMenu"
>>android:text="Menu Demos"
>>android:layout_width="fill_parent"
>>android:layout_height="wrap_content">
>>
>>>android:id="@+id/btnGraphics"
>>android:text="2D Graphics"
>>android:layout_width="fill_parent"
>>android:layout_height="wrap_content">
>>
>>>android:id="@+id/btnUIEvents"
>>android:text="UI Events"
>>android:layout_width="fill_parent"
>>android:layout_height="wrap_content">
>>
>>  >android:id="@+id/btnImage"
>>android:src="@drawable/imgbutton"
>>android:layout_width="fill_parent"
>>android:layout_height="wrap_content">
>> 
>>
>> --
>> 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
>

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

Re: [android-beginners] vertical Scrollbar in linearlayout not working

2010-07-21 Thread Justin Anderson
Wrap the LinearLayout in a ScrollView and take the  following line out of
LinearLayout:
android:scrollbars="vertical"

Not sure if that is the best or recommended way but that is how I did it in
my app...

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


On Wed, Jul 21, 2010 at 3:13 PM, Amit Sood  wrote:

> Hello Experts,
>
> I have a linear layout in which i have many buttons. As i m adding
> more to it the layout is not bring its scroll so i cannot see my newly
> added buttons
>
> XML for the layout is below.
>
> Please advice
>
> 
>
> http://schemas.android.com/apk/res/
> android"
>android:orientation="vertical"
>android:layout_width="fill_parent"
>android:scrollbars="vertical"
>android:layout_height="wrap_content"
>>
>android:text="@string/HeaderText"
>android:layout_width="fill_parent"
>android:layout_height="wrap_content">
>
>android:id="@+id/btnLinear"
>android:text="@string/Linear_Layout"
>android:layout_width="fill_parent"
>android:layout_height="wrap_content">
>
>android:id="@+id/btnRelative"
>android:text="@string/Relative_Layout"
>android:layout_width="fill_parent"
>android:layout_height="wrap_content">
>
>android:id="@+id/btnTable"
>android:text="@string/Table_Layout"
>android:layout_width="fill_parent"
>android:layout_height="wrap_content"
>>
>android:id="@+id/btnGrid"
>android:text="@string/Grid_Layout"
>android:layout_width="fill_parent"
>android:layout_height="wrap_content"
>>
>android:id="@+id/btnTab"
>android:text="Click me to for tab layout"
>android:layout_width="fill_parent"
>android:layout_height="wrap_content">
>
>android:id="@+id/btnList"
>android:text="Click me for List view"
>android:layout_width="fill_parent"
>android:layout_height="wrap_content">
>
>android:id="@+id/btnMenu"
>android:text="Menu Demos"
>android:layout_width="fill_parent"
>android:layout_height="wrap_content">
>
>android:id="@+id/btnGraphics"
>android:text="2D Graphics"
>android:layout_width="fill_parent"
>android:layout_height="wrap_content">
>
>android:id="@+id/btnUIEvents"
>android:text="UI Events"
>android:layout_width="fill_parent"
>android:layout_height="wrap_content">
>
>  android:id="@+id/btnImage"
>android:src="@drawable/imgbutton"
>android:layout_width="fill_parent"
>android:layout_height="wrap_content">
> 
>
> --
> 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] vertical Scrollbar in linearlayout not working

2010-07-21 Thread Amit Sood
Hello Experts,

I have a linear layout in which i have many buttons. As i m adding
more to it the layout is not bring its scroll so i cannot see my newly
added buttons

XML for the layout is below.

Please advice



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


















  


-- 
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: Including libraries in project

2010-07-21 Thread kypriakos

Hi Mark,

so it does seem that if the jars are not compiled under Android, the
Android
plug in (if the Eclipse Project Build Automatically is checked)
rejects them from
the apk - in other cases it does not generate the apk at all.

Some of the libs I need are part of the Java's standard libs
(ex. java.awt.*; does exist in Android SDK but
java.awt.event.ActionEvent;
does not). So I am guessing that either I should find a compatibility
library
written for Android for these libs or to avoid using them and use only
what Android offers.

Thanks for helping out with your pointers on this

On Jul 18, 8:30 pm, Mark Murphy  wrote:
> On Sun, Jul 18, 2010 at 4:52 PM, kypriakos  wrote:
> >> Step #1: Put the JAR in libs/
> > I did
> >> Step #2: If using Eclipse, add it to your build path
> > I did
> >> Step #3: Code to the JAR's API and build your APK
> > I did
>
> > Even for the case of the jars that are Android-friendly they don't get
> > included
> > in the apk.
>
> :: shrug ::
>
> It works for many other developers, including hundreds of students of
> mine. Since the non-Eclipse portion is pretty bulletproof, and since I
> don't use Eclipse, my guess is that your problems stem from something
> Eclipse-related, perhaps in the way you are putting it in your build
> path.
>
> > The libs dir is either in the src dir or the top level
> > dir.
>
> The libs/ dir is supposed to be in the root of the project dir. Now, I
> have heard that you can have it located elsewhere when you are
> building with Eclipse, but I have not tried that.
>
> > Once I move
> > it in the assets dir I can see it being wrapped inside the apk.
>
> I suspect having it there will be useless.
>
> --
> Mark Murphy (a Commons 
> Guy)http://commonsware.com|http://github.com/commonsguyhttp://commonsware.com/blog|http://twitter.com/commonsguy
>
> _The Busy Coder's Guide to Android Development_ Version 3.1 Available!

-- 
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: Source code

2010-07-21 Thread kypriakos

Thanks Mark and Rogerio - I did google but I jumped straight to the
link that referred
to the cupcake :)  My bad .. Got it now

On Jul 20, 5:10 pm, Rogério de Souza Moraes 
wrote:
> You can get the source fromhttp://source.android.com.
>
> Next time google a little bit more and you will find out the answer.
>
> Regards,
>
> Rogerio
>
> 2010/7/20 Mark Murphy > On Tue, Jul 20, 2010 at 3:20 
> PM, kypriakos  wrote:
> > > is the Android 2.1 or 2.2 source code available somewhere?
>
> >http://source.android.com
>
> > > I was
> > > able to find the source code of what they called android 1.5 cupcake
> > > but I am not sure that is very recent.
>
> > Cupcake is from last year.
>
> > --
> > Mark Murphy (a Commons Guy)
> >http://commonsware.com|http://github.com/commonsguy
> >http://commonsware.com/blog|http://twitter.com/commonsguy
>
> > _The Busy Coder's Guide to Android Development_ Version 3.1 Available!
>
> > --
> > 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


Re: [android-beginners] How to Access voice call stream in real time

2010-07-21 Thread wahib haq
hey Pete, i would just wanna add that if there are voice recording apps then
it means we can receive the audio stream from API's.

wahib

On Tue, Jul 20, 2010 at 9:00 PM, peter f miller  wrote:

> On Mon, Jul 19, 2010 at 10:53 PM, zain mustafa  wrote:
> > I know it is possible to catch the voice stream of a call and edit it
> > in real time because of the existence of call spoofing applications on
> > android phones. I need to know how i can access the real time stream
> > of a voice call that i may edit it and then send the edited voice
> > stream through the modem. Any help would be greatly apprecia
>
> I'm pretty sure you can't access the call audio from the Android
> API's. Are you sure the voice spoofing apps don't work by calling a
> third party number where the audio manipulation is done?
>
> Pete
>
> --
> 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
>



-- 
Wahib-ul-haq

3rd year Communications Engineering Student,
NUST, Pakistan.
Microsoft Student Partner
NUST-SEECS Open Mobile Squad ( Android Dev Team )
Software Internee @ Cogilent Solutions
Blog: www.livetechpro.com
web: http://www.google.com/profiles/wahib.tech
follow me on twitter @wahibhaq

-- 
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] options menu problem

2010-07-21 Thread Justin Anderson
http://developer.android.com/reference/android/app/Activity.html#openOptionsMenu%28%29


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


On Tue, Jul 20, 2010 at 11:20 PM, Emmen Farooq wrote:

> is there anyway to make the options menu appear with out clicking on
> the menu button ? . Thanks in advance
>
> --
> 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


Re: [android-beginners] problem in creating options menu

2010-07-21 Thread Justin Anderson
Ok, that is a little more clear... Neither you nor your links mentioned
anything about displaying a menu programmatically.  To answer your question
I would refer you to the activity class, as there is a method on there that
does just what you want:

http://developer.android.com/reference/android/app/Activity.html#openOptionsMenu%28%29

In the future, I would recommend taking a look at the docs to see if there
is a method that does what you want...  If you did and just missed this
method then you can disregard this last comment. :-)

Hope that helps,
Justin

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


On Wed, Jul 21, 2010 at 2:31 AM, Emmen Farooq wrote:

> Oh no not all  that wasnt the intention , I aplogiase if Any thing was
> akward . actually i m making an application in which I want to make an
> " Options Menu " show as soon as the app loads with out clickign the
> menu button in emaultor , so any help woud lbe appreciated , sorry for
> the previous imcomplete email ,
>
> many thnaks indeed
>
> On Wed, Jul 21, 2010 at 1:26 PM, Justin Anderson
>  wrote:
> > You're going tohave to give us more info if you are expecting some kind
> of
> > help...
> >
> > If you are just wanting to tell us of your experience with android so
> far,
> > then thanks for the status update... :-)
> >
> > On Jul 20, 2010 9:49 PM, "Emmen Farooq"  wrote:
> >
> > Hi , I tried the tutorials at
> > http://www.droidnova.com/how-to-create-an-option-menu,427.html
> > and
> > http://developer.android.com/guide/topics/ui/menus.html
> >
> > but in both cases the menu just doesn't appear , the app doesn't crash
> > though
> >
> > --
> > 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
> >
>
> --
> 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] hi

2010-07-21 Thread Vijay
HI
I bought china one white apple iphone 3gs from this
I have received product!
w e b:hotrademe.com
You can check it!
Hope all is going well for you I hope you can enjoy it for shopping,
Thank you!

-- 
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: Notification.FLAG_NO_CLEAR not working as expected

2010-07-21 Thread Chris Dibbern
I agree with TreKing. I just used this code in the last few days:

notification.flags |= Notification.FLAG_NO_CLEAR;

It appears to work fine for me. Does it solve your problem?

On Jul 17, 12:49 pm, Bret Foreman  wrote:
> I'm setting my notification like this:
>
>         notification.defaults |= Notification.FLAG_NO_CLEAR;
>
> I expect this to mean that pressing the "clear" button in the expanded
> notification screen will not clear this notification. But the button
> still clears the notification.
>
> I think this may be a permissions problem in my manifest. I currently
> have a uses permission "android.permission.VIBRATE" set. Do I need any
> other permissions to make a notification sticky?

-- 
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] Re: eclipse problem

2010-07-21 Thread Shaista Naaz
Hi,

I am also facing same problem regarding 'gen' folder not found. But when I
do clean, rebuild and build automatically on and off. It works for me. I am
working on Windows not Linux, in the PATH variable I have given the SDK path
till tool but I have not mentioned JDK path there.

Do I need to do this ?
Please kindly clarify.

Waiting for reply.

Thanks & Regards,
Shaista

On Mon, Apr 12, 2010 at 5:27 PM, nubh bhargava wrote:

> Hey try this I hope it might help, what I understood from your problem is
> that you need to make a build for the project i.e. Right click on the folder
> of the project and you see a list and out of that list, click Android out of
> it and set the build path or the version on which you are about to test the
> application, please see which version you are building the application.
>
> Thanks & Regards
> NUBH
>
> --
> 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


Re: [android-beginners] Re: Force close issue!

2010-07-21 Thread Shaista Naaz
Hi Justin,

Is it that when we make changes in string.xml and main.xml then we need to
make changes in Android Manifest too.?
As I am having similar kind of problem.
I am running Hello Android program by making changes in the XML as suggested
in the link but after this i am not able to run my code at all. gen is not
getting generated somehow.
I tried doing all the clean, rebuild and build automatically on and off but
that is also not working.
One more thing I want to ask that do i need to mention JDK till bin in the
environment variable PATH. I have only done it for SDK, I am working on
Window.

Any help appreciated, thanks,

Shaista

On Wed, Jul 21, 2010 at 5:33 PM, Justin  wrote:

> Could the issue be that it the section of code your trying to load is
> not in the Android Manifest?  This has caused issues for me in the
> past.
>
> --
> 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


Re: [android-beginners] Re: Problem with IDE.

2010-07-21 Thread Shaista Naaz
Hey hi,

I am also having the exactly same problem as, the error message says "gen
[in HelloAndroid] does not exist". But actually it is there. as I can see
it.

Please kindly suggest what should I do to get rid of this problem.

Thanks in Advance,
Shaista

On Mon, May 10, 2010 at 10:16 PM, Indicator Veritatis wrote:

> He is already using Eclipse. The problem is that when he relies on
> Eclipse to create the folder, it fails. He has to recreate it manually
> everytime he executes Project>Clean Project.
>
> It sounds like something is wrong with the Ant script Eclipse has
> built for the project, but based on the evidence here, it is hard to
> be more specific.
>
> On May 8, 7:30 pm, joshua hublar  wrote:
> > The best advice I can offer is to go with Eclipse -- I had my dev
> platform
> > setup in 15 minutes and I highly recommend it.  I've not had a single
> > problem with it.
> >
> > On Sat, May 8, 2010 at 10:26 PM, Ubuntu Explorer
> > wrote:
> >
> >
> >
> > > Is there a sequence to be followed while building android projects in
> IDE?
> >
> > > Sometimes, I get an error saying "gen" folder is not present. But it is
> an
> > > autogenerated folder created duing compilation.
> >
> > > If I manually create this folder I am able to compile this project. But
> if
> > > I clean and then try to build, I get a build path error.
> >
> > > Should I be creating this folder everytime?
> >
> > > Regards,
> > > Sanjeev
> >
> > > --
> > > 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 athttp://
> stackoverflow.com/questions/tagged/android
> >
> > To unsubscribe from this group, send email to
> > android-beginners+unsubscr...@googlegroups.com
> > For more options, visit this group athttp://
> 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
>

-- 
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: Updating XML files

2010-07-21 Thread DanH
I think the best approach is to read it in as a Document and operate
on that with xpath stuff.  Not good for large documents, but
reasonable for medium/small ones.

On Jul 21, 7:31 am, Emmen Farooq  wrote:
> Hi all and thank you for all your help ,
>
> I have understood SAX parser and got it to work to read xml file , and
> have understood the concept of Xstrem for creating xml files , but Im
> null with the concept of updating only a certain part of an xml file
> with android , i mean a file exists and I wd like to update only a
> certain tag , any help would be appreciated
>  many thanks indeed

-- 
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: Map view problem - blank screen

2010-07-21 Thread Felipe Arturo
Yeah, forget about it, when developing Maps View on real devices you
need to sign in it first and release the .apk
and then install it.

http://developer.android.com/guide/publishing/app-signing.html

that's the guide for signing it if anyone needs it

On Jul 21, 11:12 am, Felipe Arturo  wrote:
> Hello, I'm new here, I have a problem implementing a Map view element
> on my application.
> The app loads but the screen remain blank and nothing comes up.
>
> Im developing on a real device, I got a G1
>
> I have already got my own keystore and implemented all the permissions
> seen
> on the tutorial that I'm following:
>
> http://mobiforge.com/developing/story/using-google-maps-android
>
> my code is this:
>
> this is my activity
>
> package net.learn2develop.GoogleMaps;
>
> import android.app.Activity;
> import android.content.Intent;
>
> import com.google.android.maps.MapActivity;
> import com.google.android.maps.MapView;
> import android.os.Bundle;
> import android.view.Menu;
> import android.view.MenuItem;
>
> public class MapsActivity extends MapActivity {
>     /** Called when the activity is first created. */
>     @Override
>     public void onCreate(Bundle savedInstanceState) {
>         super.onCreate(savedInstanceState);
>         setContentView(R.layout.main);
>     }
>     @Override
>     protected boolean isRouteDisplayed() {
>         return false;
>     }
>     @Override
>     public boolean onCreateOptionsMenu(Menu menu) {
>         super.onCreateOptionsMenu(menu);
>         menu.add(0,-1, 0, R.string.close);
>         menu.add(0,1,1,R.string.acercade);
>
>         return true;
>     }
>
>     @Override
>     public boolean onMenuItemSelected(int featureId, MenuItem item) {
>         switch(item.getItemId()) {
>
>         case -1:
>                 finish();
>                 return true;
>         case 1:
>                 about();
>                 return true;
>         }
>
>         return super.onMenuItemSelected(featureId, item);
>     }
>
>     private void about() {
>
>         Intent i = new Intent(this, Acerca.class);
>         startActivity(i);
>
>     }
>
> }
>
> this one is my manifest file
>
> 
> http://schemas.android.com/apk/res/android";
>       package="net.learn2develop.GoogleMaps"
>       android:versionCode="1"
>       android:versionName="1.0">
>     
>       
>                                     android:label="@string/app_name">
>             
>                 
>                  android:name="android.intent.category.LAUNCHER" />
>             
>         
>
> 
> 
>          
>           android:name="android.permission.ACCESS_FINE_LOCATION"> permission>
>
> 
>
> and this one is my main file
>
> 
> http://schemas.android.com/apk/res/
> android"
>     android:orientation="vertical"
>     android:layout_width="fill_parent"
>     android:layout_height="fill_parent"
>     >
>      android:layout_width="fill_parent"
>     android:layout_height="wrap_content"
>     android:text="@string/hello"
>     />
>                android:id="@+id/mapView"
>         android:enabled="true"
>         android:clickable="true"
>         android:apiKey="here_goes_my_keystore_got_from_google"
>         android:layout_width="fill_parent"
> android:layout_height="fill_parent"/>
>
> 

-- 
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] file:// problem - nothing seems to work

2010-07-21 Thread Victoria
Hi,

I got two problems that both seem to be connected to file://...

Problem 1: for the past days I have been trying to attach a video to
an email...but the application always tells me "Sorry, you cannot add
this video to your email"

when I try this:

Uri uri = Uri.parse("file://" + videocursor.getString(0));
or this:

Uri uri = Uri.fromFile(new File(videocursor.getString(0)));
I get an I/O Exception Error that the file sdcard/Video1.mp4 wasn't
found, so it seems the file:// isn't passed on at all...when test if
file:// is actually created it is always existing...

when I only try to pass on the file as a String I get a Logcat output
that android.intent.extra.STREAM expected Parcelable but value was a
java.io.File. The default value  was returned.

Problem 2: Another thing I tried but couldn't get working was to
delete a video from the SD card. I created the delete demand within an
AlertDialog and again file:// doesn't seem to have any effect...

AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setMessage("Are you sure you want to delete?")
   .setCancelable(false)
   .setPositiveButton("Yes", new
DialogInterface.OnClickListener() {
   public void onClick(DialogInterface dialog,
int id) {
//EditGalleryView.this.finish();
   File file = new
File(videocursor.getString(0));
deleted = file.delete();
Toast.makeText(EditGalleryView.this,
"You just deleted " +Uri.fromFile(file), Toast.LENGTH_SHORT).show();
Log.d("delete",
Uri.fromFile(file).toString());
   }

})

I really have no idea what to do anymore...please help me Thank you

-- 
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] Map view problem - blank screen

2010-07-21 Thread Felipe Arturo
Hello, I'm new here, I have a problem implementing a Map view element
on my application.
The app loads but the screen remain blank and nothing comes up.

Im developing on a real device, I got a G1

I have already got my own keystore and implemented all the permissions
seen
on the tutorial that I'm following:

http://mobiforge.com/developing/story/using-google-maps-android

my code is this:

this is my activity

package net.learn2develop.GoogleMaps;

import android.app.Activity;
import android.content.Intent;

import com.google.android.maps.MapActivity;
import com.google.android.maps.MapView;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;

public class MapsActivity extends MapActivity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
@Override
protected boolean isRouteDisplayed() {
return false;
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
super.onCreateOptionsMenu(menu);
menu.add(0,-1, 0, R.string.close);
menu.add(0,1,1,R.string.acercade);

return true;
}

@Override
public boolean onMenuItemSelected(int featureId, MenuItem item) {
switch(item.getItemId()) {

case -1:
finish();
return true;
case 1:
about();
return true;
}

return super.onMenuItemSelected(featureId, item);
}

private void about() {

Intent i = new Intent(this, Acerca.class);
startActivity(i);

}

}


this one is my manifest file


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

  
 










 
 





and this one is my main file


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

  




-- 
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] Spinners identical in XML but look different when run

2010-07-21 Thread Mark Murphy
On Wed, Jul 21, 2010 at 10:28 AM, jonboy1969  wrote:
> I placed two Spinners using XML inside my TableLayout.
> They both work, but they both look different. I gave the exact same
> properties only changing the Id.

That has nothing to do with it.

> the one spinner has larger padding with radio buttons on the right and
> the second one has almost no padding and no radio buttons.

That is determined by the adapters you put in the Spinners. The
adapters are responsible for the Views that go in the Spinners, both
for the selected item and for the available items in the dialog that
appears when the user presses the drop-arrow.

> How can I make them look the same

Use the same layouts in your adapters.

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://github.com/commonsguy
http://commonsware.com/blog | http://twitter.com/commonsguy

_The Busy Coder's Guide to Android Development_ Version 3.1 Available!

-- 
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] Spinners identical in XML but look different when run

2010-07-21 Thread jonboy1969
I placed two Spinners using XML inside my TableLayout.
They both work, but they both look different. I gave the exact same
properties only changing the Id.
the one spinner has larger padding with radio buttons on the right and
the second one has almost no padding and no radio buttons. How can I
make them look the same. or why do they look different?
thanks for any help.

here is my xml if it helps.


http://schemas.android.com/apk/res/android";
>











-- 
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] Calling back function

2010-07-21 Thread Mark Murphy
Call finish().

On Wed, Jul 21, 2010 at 7:14 AM, Bhaban N  wrote:
> How can I go to the previous activity by pressing some
> button programmatically instead of pressing default back button on phone.

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://github.com/commonsguy
http://commonsware.com/blog | http://twitter.com/commonsguy

_The Busy Coder's Guide to Android Development_ Version 3.1 Available!

-- 
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] Updating XML files

2010-07-21 Thread Emmen Farooq
Hi all and thank you for all your help ,

I have understood SAX parser and got it to work to read xml file , and
have understood the concept of Xstrem for creating xml files , but Im
null with the concept of updating only a certain part of an xml file
with android , i mean a file exists and I wd like to update only a
certain tag , any help would be appreciated
 many thanks indeed

-- 
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: Force close issue!

2010-07-21 Thread Justin
Could the issue be that it the section of code your trying to load is
not in the Android Manifest?  This has caused issues for me in the
past.

-- 
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] Calling back function

2010-07-21 Thread Bhaban N
Hi all,

How can I go to the previous activity by pressing some
button programmatically instead of pressing default back button on phone.

thanking you
regards
Bhaban

-- 
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] problem in creating options menu

2010-07-21 Thread Emmen Farooq
Oh no not all  that wasnt the intention , I aplogiase if Any thing was
akward . actually i m making an application in which I want to make an
" Options Menu " show as soon as the app loads with out clickign the
menu button in emaultor , so any help woud lbe appreciated , sorry for
the previous imcomplete email ,

many thnaks indeed

On Wed, Jul 21, 2010 at 1:26 PM, Justin Anderson
 wrote:
> You're going tohave to give us more info if you are expecting some kind of
> help...
>
> If you are just wanting to tell us of your experience with android so far,
> then thanks for the status update... :-)
>
> On Jul 20, 2010 9:49 PM, "Emmen Farooq"  wrote:
>
> Hi , I tried the tutorials at
> http://www.droidnova.com/how-to-create-an-option-menu,427.html
> and
> http://developer.android.com/guide/topics/ui/menus.html
>
> but in both cases the menu just doesn't appear , the app doesn't crash
> though
>
> --
> 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
>

-- 
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] problem in creating options menu

2010-07-21 Thread Justin Anderson
You're going tohave to give us more info if you are expecting some kind of
help...

If you are just wanting to tell us of your experience with android so far,
then thanks for the status update... :-)

On Jul 20, 2010 9:49 PM, "Emmen Farooq"  wrote:

Hi , I tried the tutorials at
http://www.droidnova.com/how-to-create-an-option-menu,427.html
and
http://developer.android.com/guide/topics/ui/menus.html

but in both cases the menu just doesn't appear , the app doesn't crash
though

--
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] Google Image on Google map

2010-07-21 Thread NBS
Hi all,

I am facing some problem on google map.
When I run the map demo program, there is one Google image on left bottom.
This image is draw in some phone like HTC Nexus one or Desire.
But this image does not draw to Motorolla Motoroi.

Could anyone suggest me how I can hide the Google image.
OR is there anyway to draw that image.

thanking you
Regards
NBS

-- 
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] Force close issue!

2010-07-21 Thread Kostya Vasilyev
At this point, let the application run until you get a force close 
dialog on the device.


Then check logcat (in Eclipse or "adb logcat" from the command line) to 
find out the cause - it will be in the stack trace, under "Caused by:".


The message about JAR means that the crash is somewhere inside Android - 
possibly you are passing a null pointer to some method, or forgot to 
declare something in the manifest. This is nothing to be especially 
concerned about - check logcat and eliminate the cause.


-- Kostya

21.07.2010 10:13, Linh Le пишет:

I am having problems right when I run the program. Whenever I use the
original file, it runs fine. However, for the file I made edits too,
it always sees to force close itself. I ran it through a debugger and
this is what I get:


"The JAR of this class file belongs to container 'Android 2.1' which
does not allow modification to source attachments on its entries"

//Compiled from Resources.java (version 1.5: 49.0, super bit)

Does anybody know what is wrong with it when it is running?

   



--
Kostya Vasilev -- WiFi Manager + pretty widget -- http://kmansoft.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