Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have two different applications. How can I put them in one application having a homepage with two buttons that each will link to the applications?

For example I have:

com.example.process
com.example.results

I want to have an application that will have a homepage with two buttons, one button will open the com.example.process application while the other will link to the com.example.results application.

share|improve this question
1  
You should really include what code or approaches you've actually tried. – yarian Feb 26 at 8:05

closed as not a real question by CharlesB, M42, Alex, Gorpik, Alies Belik Feb 26 at 9:31

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

Make both project/Application as libraries and add them to your current project then in menifest file define their main activty that needs to be triggered and then in your activity class do call the other projects activites as per your requirement

for example snippet is in menifest

 <activity 
        android:name="com.qualcomm.QCARSamples.VirtualButtons.VirtualButtons"
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen">

    </activity>

in your main project activity

import com.qualcomm.QCARSamples.VirtualButtons.VirtualButtons;

 buttonName=(Button)findViewById(R.id.buttonName);
    buttonName.setOnClickListener(new View.OnClickListener() {

        public void onClick(View v) {
            Intent intent=new Intent(PUTITOUT.this,VideoPlayback.class);
            startActivity(intent);

        }
    });
share|improve this answer

You can use PackageManager.getLaunchIntentForPackage(String packageName) to launch an application given package name.

However, be sure to handle the corresponding PackageManager.NameNotFoundException if the user doesn't have that package installed.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.