I have a link "openactivity://", my application has activity: com.example.MyAct
Is there way to open activity "com.example.MyAct" by clicking on the link ?
I have tried with :
 <activity android:name=".MyAct"
                  android:label="@string/app_name">
      <intent-filter>
          <action android:name="android.intent.action.VIEW" />
          <category android:name="android.intent.category.DEFAULT" />
          <category android:name="android.intent.category.BROWSABLE" />
          <data android:scheme="openactivity"/>
      </intent-filter>
   </activity >
But it doesn't alway work, it seem not work on Android device with high version.(It doesn't work on my HTC Sensation version 2.3.4 and HTC One X version 4.0.3)