0

I'm new in android so please help me how to it. im trying to do it by using custom intent filter.

Manifest file:

<activity android:name=".SecondActivity">

            <intent-filter>
                <action android:name="myaction"/>
            </intent-filter>

        </activity>

java code:

Intent intent=new Intent("myaction");
        startActivity(intent);

thanks in advance

shubh
  • 9
  • 2

1 Answers1

0

You should use

sendBroadcast(intent)

instead of

startActivity(intent)
Lino
  • 5,084
  • 3
  • 21
  • 39