如何从android中的链接打开应用程序?

时间:2014-08-31 11:09:14

标签: android

此问题已被提出超过10次,例如:

  1. Launch custom android application from android browser
  2. Android Respond To URL in Intent
  3. How to implement my very own URI scheme on Android
  4. 我尝试了10多个链接和教程,似乎我错过了一些东西。

    我执行以下操作:

    1. 创建一个新的Android项目,你是一个空行动。
    2. 然后我创建了以下Android清单:

      <?xml version="1.0" encoding="utf-8"?>
      <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.example.my_test"
      android:versionCode="1"
      android:versionName="1.0" >
      
      <uses-sdk
          android:minSdkVersion="18"
          android:targetSdkVersion="18" />
      
      <application
          android:allowBackup="true"
          android:icon="@drawable/ic_launcher"
          android:label="@string/app_name"
          android:theme="@style/AppTheme" >
          <activity
              android:name=".MainActivity"
              android:label="@string/app_name" >
              <intent-filter>
                  <action android:name="android.intent.action.MAIN" />
                  <category android:name="android.intent.category.LAUNCHER" />
              </intent-filter>
      
              <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="http" android:host="planb.site11.com"/>
              </intent-filter>
      
              <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="my.special.scheme" android:host="path" />
              </intent-filter>
          </activity>
      </application>
      

    3. 然后我输入一个我创建的小网页,希望链接能够正常工作(在nexus 5上使用谷歌浏览器) 这是页面(他的来源非常简单) http://planb.site11.com/

    4. 然后点击链接,但没有任何内容可以打开我的应用:(

    5. 我缺少什么? 我如何在我的Android中看到哪些应用程序签署了哪些意图?

      感谢。

0 个答案:

没有答案