sorry ..
when i try code by adding it to manifest file application no show in browser list (on device.)
<code>
AddActivityText(main,
<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:mimeType="*/*" android:host="*" android:scheme="http" />
</intent-filter>
)
what is the problem please?
</code>