startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(
"myDomain.com")));
在我的网站做某事后,我想再次打开我的Android应用程序.
我找到这个代码,
<a href="market://details?id=info.androidhive.slidingmenu">
但它只是打电话给市场找到并安装应用程序!
解决方法:
你可以看看这个:https://developer.android.com/training/app-indexing/deep-linking.html
<activity
android:name="com.example.android.GizmosActivity"
android:label="@string/title_gizmos" >
<intent-filter android:label="@string/filter_title_viewgizmos">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.broWSABLE" />
<!-- Accepts URIs that begin with "http://www.example.com/gizmos” -->
<data android:scheme="http"
android:host="www.example.com"
android:pathPrefix="/gizmos" />
<!-- note that the leading "/" is required for pathPrefix-->
<!-- Accepts URIs that begin with "example://gizmos”
<data android:scheme="example"
android:host="gizmos" />
-->
</intent-filter>
所以你的应用程序将通过以下链接启动:
<a href="example://gizmos">