Skip to main content

Posts

Showing posts from January, 2016

Launching Android application from web browser

Steps to follow :- 1. Define an activity in android manifest file with below intent filters :-    <activity             android:name=".LaunchActivityFromBrowser"             android:configChanges="orientation|keyboardHidden|fontScale|locale|layoutDirection|screenSize|screenLayout|mnc|mcc|navigation"             android:launchMode="singleTask"             android:screenOrientation="portrait"             android:theme="@android:style/Theme.Black.NoTitleBar" >             <intent-filter>                <action android:name="android.intent.action.VIEW" />                 <category android:name="android.intent.category.DEFAULT" />                  <action android:name="customAction" />                 <category android:name="android.intent.category.BROWSABLE" />             </intent-filter>         </activity> adding CATEGORY_BROWSABLE