>
> I have googleing on how & where to 'call a method' but none of the results
> seem to apply or are not specific enough for a newbie like me.
>

Wow.... I really feel sorry for you, so I'm just going to give you the
answer...

Change this:

> @Override
> public void onCreate(Bundle savedInstanceState) {
>     super.onCreate(savedInstanceState);
>     setContentView(R.layout.activity_main);
> }
>

to this:
@Override
public void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    try
    {
        executeHttpGet();
    }
    catch (Exception e)
    {
         //There was a problem running executeHttpGet() so display some
sort of error to the user
    }
}

And then I am REALLY recommending that you start with some extremely basic
programming tutorials...

Thanks,
Justin Anderson
MagouyaWare Developer
http://sites.google.com/site/magouyaware


On Mon, Aug 27, 2012 at 12:29 PM, Rob <allan.robert.thomp...@gmail.com>wrote:

> I have googleing on how & where to 'call a method' but none of the results
> seem to apply or are not specific enough for a newbie like me.
>
>
> On Monday, 27 August 2012 14:19:38 UTC-4, TreKing wrote:
>
>> On Mon, Aug 27, 2012 at 1:06 PM, Rob <allan.robe...@gmail.**com> wrote:
>>
>>> I don't understand...
>>
>>
>> You wrote a method that does something. In order for that method to
>> actually do it's thing, you have to call it. Justin is suggesting you do
>> that, because currently you are not.
>>
>> ------------------------------**------------------------------**
>> ------------------------------**-------
>> TreKing <http://sites.google.com/site/rezmobileapps/treking> - Chicago
>> transit tracking app for Android-powered devices
>>
>>  --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
>

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

Reply via email to