IDE: Eclipse, java, Android
Hi, I have 2 android applications App1, App2. In App1 I have created a button and on clicking this button I want to launch another android application.
//For performing this i have created button and a event Code is below btnotherAppLaunch.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View arg0) { Intent mIntent = new Intent("com.example.addsubtract"); } }); Here addsubtract is my simple App2.
When i am clicking on button nothing is happening. pls suggest what i am missing I am new in android app development