让你的App能够在搜索结果中唤起
让你的App能够在搜索结果中唤起
随着移动互联网及智能机的快速发展,由于APP能够更好的结合手机特征从而给带来更好的的体验,从而推动APP呈现爆炸式发展。所以用户不仅仅通过网站而且越来越多的通过APP来满足各种需求。但APP较网页搜索更为封闭,内容和服务很难通过传统的连接得到传播,同时APP的推广成本居高不下也给开发者带来巨大的困扰。为了给开发者带来更多的下载、安装量及启动频率搜索引擎平台正在与开发者和站长合作,将native App与移动搜索联系起来,在搜索结果中提供App的deep linking,支持从搜索结果直接调起App到具体的页面。
而让App支持其他的App唤起只需要在自己的AndroidMainfest.xml中Activity声明处加入一个特殊的 intent filters
<activity android:name="com.example.wakeup.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" /> <!—接受以 "wakeup://example/shop” 开头的uri --> <data android:host="example" android:scheme="wakeup" android:pathPattern="/shop=.*" /> <category android:name="android.intent.category.BROWSABLE" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> </activity>
唤起的另一端只需要知道URI,就可以直接唤起该App的此页面
Uri url = Uri.parse("wakeup://example/shop=123"); Intent intent = new Intent(Intent.ACTION_VIEW, url); startActivity(intent);
加入唤起功能的App就能够获得
private void getIntentData() { Uri uri = getIntent().getData(); if (uri != null) { String message = "path = " + uri.getPath() + "\n"; message += "scheme = " + uri.getScheme() + "\n"; message += "host = " + uri.getHost() + "\n"; message += "data uri = " + uri; mMessageTextView.setText(message); } }
拿到path就可以做后期也数据逻辑处理了。
一个唤起的demo:http://download.csdn.net/detail/yzzst/6861925
参考:
App Indexing for Google Search
https://developers.google.com/app-indexing/
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。