博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
点击短信中的url打开某个应用
阅读量:6081 次
发布时间:2019-06-20

本文共 1675 字,大约阅读时间需要 5 分钟。

实现功能:
短信内容中含有url(例如,
http://youngo.com/app/
),点击后打开apk
遗留问题:
点击url后,会出现选择框,让用户选择是用浏览器打开还是用该apk打开————没有找到方法如何不出现该选择框??
参考:
1、应用中AndroidManifest.xml配置——主要
 
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.msgintenapptest"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.SEND_SMS"/>
<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>
<data
android:scheme="http"
android:host="youngo.com"
android:pathPrefix="/app/">
</data>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
</intent-filter>
</activity>
</application>
</manifest>
2、测试发送短信
 
private Button.OnClickListener button_clickListener = new Button.OnClickListener(){
@Override
public void onClick(View v) {
try {
URL url = new URL("http://youngo.com/app/");
intentToSms("18511111111",url.toString());
} catch (MalformedURLException e) {
e.printStackTrace();
}
}
};
private void intentToSms(String tel, String msg){
Uri uri = Uri.parse("smsto:"+tel);
Intent intent = new Intent(Intent.ACTION_SENDTO,uri);
intent.putExtra("sms_body", msg);
startActivity(intent);
}

附件列表

 

转载地址:http://wkhgx.baihongyu.com/

你可能感兴趣的文章
四部曲
查看>>
LINUX内核调试过程
查看>>
【HDOJ】3553 Just a String
查看>>
Java 集合深入理解(7):ArrayList
查看>>
2019年春季学期第四周作业
查看>>
linux环境配置
查看>>
ASP.NET MVC中从前台页面视图(View)传递数据到后台控制器(Controller)方式
查看>>
一个想法(续二):换个角度思考如何解决IT企业招聘难的问题!
查看>>
tomcat指定配置文件路径方法
查看>>
linux下查看各硬件型号
查看>>
epoll的lt和et模式的实验
查看>>
Flux OOM实例
查看>>
07-k8s-dns
查看>>
Android 中 ListView 分页加载数据
查看>>
oracle启动报错:ORA-00845: MEMORY_TARGET not supported on this system
查看>>
Go方法
查看>>
Dapper丶DapperExtention,以及AbpDapper之间的关系,
查看>>
搞IT的同学们,你们在哪个等级__那些年发过的帖子
查看>>
且谈语音搜索
查看>>
MySQL数据库导入导出常用命令
查看>>