当我在棒棒糖 5.1 中单击浏览器上的共享时,我的应用程序未显示
my app is not displayed when I click on share on browser in lollipop 5.1
当您在任何网络链接上单击共享时,我正在尝试打开我的应用程序。我该怎么做 ?我需要广告许可吗?我已经添加了下面的代码,但我没有在共享列表中看到我的应用程序。我怎样才能让它工作。非常感谢任何帮助。
清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="example.link" >
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/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" />
<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="*" />
</intent-filter>
</activity>
</application>
</manifest>
Gradle:
android {
compileSdkVersion 23
buildToolsVersion "23.0.0"
defaultConfig {
applicationId "example.link"
minSdkVersion 22
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
尝试对主机字段和路径模式字段使用“*”通配符。我的意图过滤器看起来像:
<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:host="*"
android:pathPattern="/*"
android:scheme="http" />
<data
android:host="*"
android:pathPattern=".*"
android:scheme="custom" />
</intent-filter>
有了这些更改,当我在任何聊天应用程序或浏览器 link 上单击 links 时,我的应用程序就会在 intent 选择器中弹出。
您必须将以下代码添加到您想要在按下分享时打开的 activity
<intent-filter android:label="Your app Name">
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
当您在任何网络链接上单击共享时,我正在尝试打开我的应用程序。我该怎么做 ?我需要广告许可吗?我已经添加了下面的代码,但我没有在共享列表中看到我的应用程序。我怎样才能让它工作。非常感谢任何帮助。
清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="example.link" >
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/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" />
<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="*" />
</intent-filter>
</activity>
</application>
</manifest>
Gradle:
android {
compileSdkVersion 23
buildToolsVersion "23.0.0"
defaultConfig {
applicationId "example.link"
minSdkVersion 22
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
尝试对主机字段和路径模式字段使用“*”通配符。我的意图过滤器看起来像:
<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:host="*"
android:pathPattern="/*"
android:scheme="http" />
<data
android:host="*"
android:pathPattern=".*"
android:scheme="custom" />
</intent-filter>
有了这些更改,当我在任何聊天应用程序或浏览器 link 上单击 links 时,我的应用程序就会在 intent 选择器中弹出。
您必须将以下代码添加到您想要在按下分享时打开的 activity
<intent-filter android:label="Your app Name">
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />