Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Howto integrate 3rd party app to tabhost
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  4 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
daphilz@googlemail.com  
View profile  
 More options Aug 9 2010, 7:59 am
From: "daph...@googlemail.com" <daph...@googlemail.com>
Date: Mon, 9 Aug 2010 04:59:12 -0700 (PDT)
Local: Mon, Aug 9 2010 7:59 am
Subject: Howto integrate 3rd party app to tabhost
Hello
I using android 2.2 and I want to integrate a third party application
into the tabulator. Is that possible and how can I do that? The third
party app that I use called chartdroid. This is an intent based app
and if I post the intent through my host I get an securityexception.

ERROR/AndroidRuntime(4442): Caused by: java.lang.SecurityException:
Requesting code from com.googlecode.chartdroid (with uid 10033) to be
run in process com.chartDroid (with uid 10032)


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mark Murphy  
View profile  
 More options Aug 9 2010, 8:07 am
From: Mark Murphy <mmur...@commonsware.com>
Date: Mon, 9 Aug 2010 08:07:00 -0400
Subject: Re: [android-beginners] Howto integrate 3rd party app to tabhost
On Mon, Aug 9, 2010 at 7:59 AM, daph...@googlemail.com

<daph...@googlemail.com> wrote:
> I using android 2.2 and I want to integrate a third party application
> into the tabulator. Is that possible and how can I do that?

It is not possible, sorry.

--
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 *Advanced* Android Development_ Version 1.9
Available!


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Lanunch an application at the time of Start up" by Vinay Prasad B R
Vinay Prasad B R  
View profile  
 More options Aug 24 2010, 6:08 am
From: "Vinay Prasad B R" <vi...@innovindia.com>
Date: Tue, 24 Aug 2010 15:38:34 +0530
Local: Tues, Aug 24 2010 6:08 am
Subject: Lanunch an application at the time of Start up
Hi,

        Is it possible to launch an application at the start up time instead
of launching an application explicitly.

--
Regards,
Vinay Prasad.B.R


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dirk Jäckel  
View profile  
 More options Aug 27 2010, 10:52 am
From: Dirk Jäckel <dirk.jaec...@gmail.com>
Date: Fri, 27 Aug 2010 16:52:23 +0200
Local: Fri, Aug 27 2010 10:52 am
Subject: Re: [android-beginners] Lanunch an application at the time of Start up
Hi!

You can launch a service at boot time.

You need the permission RECEIVE_BOOT_COMPLETED and a BroadcastReceiver
that listens to  ACTION_BOOT_COMPLETED.

In Your AndroidManifest you need the following:
    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>

     <receiver android:name=".BatteryBroadcastReceiver">
            <intent-filter>
                <action android:name="android.intent.action.BOOT_COMPLETED"/>
            </intent-filter>
     </receiver>

In your BroadcastReceiver you need to override:

public void onReceive(Context c, Intent intent)

Inside onReceive() you can start your service.

Dirk

On Tue, Aug 24, 2010 at 12:08, Vinay Prasad B R <vi...@innovindia.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »