E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
setAction
AIDL使用绑定启动远程Service出现Service Intent must be explicit: Intent
Intentintent=newIntent();intent.
setAction
("remote.MyRemoteService.Action");使用AIDL调用远程Service通过隐式意图的方式
甜树果子二号
·
2020-02-03 18:00
android调用本地分享
publicstaticvoidshareImage(Contextcontext,Uriuri,Stringtitle){IntentshareIntent=newIntent();shareIntent.
setAction
君莫笑啊君莫笑_
·
2020-02-02 02:52
Android阶段性学习总结_2_Activity的生命周期、跳转方式及参数传递、启动模式。
隐式跳转:Intentintent=newIntent();intent.
setAction
("android.intent.action.BAcivity");startActivity(intent
XiaoGao128
·
2020-02-01 21:00
AlarmManager+Notification实现定时通知提醒功能
闹钟配置周期闹钟Intentintent=newIntent();intent.
setAction
(Gl
LeiHolmes
·
2020-01-08 13:19
Android调用手机浏览器的正确方式
有时候我们需要调用手机的浏览器,搜索过会我们一般都能找到这样的代码://从其他浏览器打开Intentintent=newIntent();intent.
setAction
(Intent.ACTION_VIEW
程序亦非猿
·
2020-01-06 00:42
Activity和Service跨进程通信的两种方式
但消耗系统资源比较多,大致实现流程如下://【1】Activity启动ServiceIntentintent=newIntent(mContext,DownloadService.class);intent.
setAction
Louis_陆
·
2020-01-05 19:32
Android跳转到系统各个设置界面的方法及其列表
newComponentName("com.android.settings","com.android.settings.RadioInfo");intent.setComponent(cm);intent.
setAction
sun_wenming
·
2020-01-02 02:42
android模拟器检测
publicbooleanisEmulator(){Stringurl="tel:"+"123456";Intentintent=newIntent();intent.setData(Uri.parse(url));intent.
setAction
brzhang
·
2019-12-28 11:08
android 之 camera
首先就从制造图片的地方开始写起--Camera如果你的app里面只是需要拍一张照片,只需要调用系统的照相机就可以满足你的需求了通过ACTION_IMAGE_CAPTURE调用系统的照相机intent.
setAction
子墨_guo
·
2019-12-26 23:57
在应用中启动外部地图应用并携带参数导航
AppUtils.isInstallApp(UtoOrderDetails.this,"com.baidu.BaiduMap")){//驾车导航Intentintent=newIntent();intent.
setAction
addapp
·
2019-12-15 19:54
Android之打开系统联系人界面
newIntent(this,ContactsActivity.class);//startActivityForResult(intent,0);Intentintent=newIntent();intent.
setAction
sun_wenming
·
2019-12-13 20:55
避免APP重复启动的解决方案
publicstaticvoidstartApp(Contextcontext){Intentintent=newIntent(context,SplashActivity.class);intent.
setAction
cmeiyuan
·
2019-11-29 06:26
Android Intent 跳转
1.跳转拨号页面Intentintent=newIntent();intent.
setAction
(Intent.ACTION_CALL_BUTTON);startActivity(intent);2.
周晓风
·
2019-11-06 18:33
Android实现分享和接收分享内容
Android实现分享文本:(Intent):IntentsendIntent=newIntent();sendIntent.
setAction
(Intent.ACTION_SEND);sendIntent.putExtra
学海摆渡人
·
2019-11-04 18:00
Android打开系统APP
打开CameraprivatevoidlaunchCamera(){Intentintent=newIntent();intent.
setAction
(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA
ShawnXiaFei
·
2019-11-04 09:52
Android原生分享PDF文件
*分享文件*/privatevoidshareFile(Filefile,Stringwhatpackage){Intentshare_intent=newIntent();share_intent.
setAction
wilson93
·
2019-11-02 15:17
Android 浏览器的开发实例分享
一、启动Android默认浏览器Java代码Intentintent=newIntent();intent.
setAction
("android.intent.action.VIEW");Uricontent_url
·
2019-09-25 06:56
Android中播放在线音乐代码
z=909255638");intent.setDataAndType(uri,"audio/*");intent.
setAction
(Intent.ACTI
·
2019-09-25 02:31
Android 应用指定浏览器开发实例
一、启动Android默认浏览器Java代码Intentintent=newIntent();intent.
setAction
("android.intent.action.VIEW");Uricontent_url
·
2019-09-24 04:39
windows下svn限制强制写日志及只能修改自己日志脚本
pre-revprop-change.bat文件,然后将pre-revprop-change.ba文件内容改为:setrepos=%1setrev=%2setuser=%3setpropname=%4
setaction
无敌小威龙
·
2019-09-22 22:27
SVN
Android 标准Intent的使用详解
一Android系统用于Activity的标准Intent1根据联系人ID显示联系人信息Intentintent=newIntent();intent.
setAction
(Intent.ACTION_VIEW
·
2019-09-22 21:00
Android 调用第三方浏览器打开网址或下载文件
要浏览的资源地址*/publicstaticvoidopenBrowser(Contextcontext,Stringurl){finalIntentintent=newIntent();intent.
setAction
chengjie212232
·
2019-07-19 09:00
Android通过相机拍照后无法获取URI问题解决
Android开发中经常会使用相机拍照和从相册获取图片的功能,实现起来比较简单,打开相册Intentintent=newIntent();intent.setType("image/*");intent.
setAction
a1sd1
·
2019-01-23 16:25
Android
AndroidPie(9)使用Intent卸载应用无任何反应解决方法
publicvoidunInstallApplicationWithPackageName(StringpackageName,Contextcontext){Intentuninstall_intent=newIntent();uninstall_intent.
setAction
溟血星空
·
2018-12-13 14:43
Android常见问题处理
Android8.0在自定义广播发送和接收者时的问题
先定义一个发送广播的按钮,用来发送广播Intentintent=newIntent();intent.
setAction
("com.itcast.interceptcall.broadcast");intent.putExtra
liusuxilinyue
·
2018-11-10 15:10
Android
alarm实现原理
AlarmManager.INTERVAL_DAY时间后触发相关Service:Intenti=newIntent(EntitlementService.this,EntitlementService.class);i.
setAction
AK_Coffee
·
2018-10-29 11:34
Service Intent must be explicit错误
解决方案:使用隐式方式绑定:**1.在service中添加action:**2.在绑定时intent设置action与package:Intentintent=newIntent();intent.
setAction
load_star
·
2018-10-12 22:02
Android
SystemApp静默安装
常见安装调用系统PackageInstaller安装,7.0以下版本Intentintent=newIntent();intent.
setAction
(Intent.ACTION_VIEW);intent.setDataAndType
80ec6268dd8e
·
2018-10-09 18:24
Android调用系统设置界面
com.android.settings","com.android.settings.Settings$DeviceInfoSettingsActivity");intent.setComponent(cm);intent.
setAction
KaiBo_Zhang
·
2018-10-09 15:32
android各版本的兼容问题
自动安装在Android7.0自动安装做出了修改,android8.0增加了权限//以前Intentintent=newIntent();intent.
setAction
(Intent.ACTION_VIEW
poorSir
·
2018-09-28 20:55
android
Intent隐式意图之
setAction
()的动作设置
以下将对于用过的
setAction
()的方法作以归纳整理,持续更新…1、android.intent.action.VIEW用于显示用户的数据。
Anthonywow
·
2018-09-24 19:22
Android应用开发
android 监听软件安装与卸载,打开相关操作
卸载应用程序publicvoidunstallApp(StringappPackageName){Intentuninstall_intent=newIntent();uninstall_intent.
setAction
dinglongchen
·
2018-09-14 09:53
安卓前端
android
android 跳转到系统相册选择图片
Intentintent=newIntent();if(Build.VERSION.SDK_INT<19){intent.
setAction
(Intent.ACTION_GET_CONTENT);intent.setType
Ztianze
·
2018-09-07 15:26
Android
android 跳转到应用通知设置界面
:if(android.os.Build.VERSION.SDK_INT>=Build.VERSION_CODES.LOLLIPOP){Intentintent=newIntent();intent.
setAction
南岸青栀
·
2018-09-06 15:12
Android
项目实战
弹条目图示Snackbar(吐司)
还可以在里面设置点击事件哦Snackbar.make(view,"Replacewithyourownaction",Snackbar.LENGTH_LONG).
setAction
("点我",newView.OnClickListener
开心的小哈
·
2018-08-29 11:52
一个APP启动另外一个APP
app_1中在清单文件里设置要跳转的activity属性APP_2中使用隐式调用方式---注意action的name是相同的Intentintent=newIntent();intent.
setAction
qq_773961852
·
2018-08-16 14:49
android
安卓apk的封装方法
//安装apkpublicstaticvoidinstallApk(Filefile,Contextcontext){Intentintent=newIntent();intent.
setAction
(
Crystal_xing
·
2018-08-14 10:03
android
Android day_09 (Activity人品计算器案例)
显示意图更安全1.隐示意图:定义:通过指定一组动作或者数据意图过滤器可以有多个,只要匹配上一个意图过滤器就可以//设置意图Intentintent=newIntent();//设置跳转动作intent.
setAction
Depths_t
·
2018-07-27 19:09
Android
Android day_09 (Activity人品计算器案例)
显示意图更安全1.隐示意图:定义:通过指定一组动作或者数据意图过滤器可以有多个,只要匹配上一个意图过滤器就可以//设置意图Intentintent=newIntent();//设置跳转动作intent.
setAction
Depths_t
·
2018-07-27 19:09
Android
需要打开app通知时,从app跳转到相应应用信息处
IntentmIntent=newIntent();mIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);if(Build.VERSION.SDK_INT>=9){mIntent.
setAction
勤奋的小狼
·
2018-07-12 10:50
安卓8.0跳转到应用通知设置页面方法
直接上代码:if(android.os.Build.VERSION.SDK_INT>=Build.VERSION_CODES.O){Intentintent=newIntent();intent.
setAction
JasonHuang_
·
2018-06-29 09:52
安卓系统设置
WebView拦截H5微信支付
OverridepublicbooleanshouldOverrideUrlLoading(WebViewview,Stringurl){if(url.startsWith("weixin://")){Intentintent=newIntent();intent.
setAction
一曲烟雨伊人醉
·
2018-05-16 16:13
Android利用Intent.ACTION_SEND进行分享
下面列出一个简单的分享方式IntentshareIntent=newIntent();shareIntent.
setAction
(Inte
Jenfer421
·
2018-05-08 14:56
2018-04-26 安卓桌面插件点击判断ID
关键词widget,AppWidgetID,桌面,小部件,Android,安卓,点击,Action主要是intent传递时候不能用intent.putExtra来传递要保留的数据,而是直接用intent.
setAction
lyblyblyblin
·
2018-04-26 17:23
aidl中魅族无法绑定的坑
最近写了一个demo写了两个app达成进程间通讯代码如下:Intentintent=newIntent();intent.
setAction
("com.cly.aidlservers.ContentService
Roy@
·
2018-04-01 14:54
代码
安卓安装apk时出现“解析程序包时出现错误” 的解决方法
以上的版本出现升不了级的情况百度找到答案第一步:根据安卓版本适配不同的apk打开方式Filefile=newFile(apkPath);//更新包文件Intentintent=newIntent();intent.
setAction
Eiter
·
2018-01-11 11:56
应用层
安卓(android)之间的传值
Second.class);//Intenti=newIntent(this,Second.class);startActivity(i);情况2:隐式启动Intenti=newIntent();i.
setAction
Raalstalblack
·
2017-12-05 14:01
android——高效调用系统图库
如果浏览选择使用系统自带的浏览选择组件,那是比较方便的,下面的方法就可以了:Intentintent=newIntent();intent.
setAction
(Intent.ACTION_PICK);intent.setType
ruijindp
·
2017-11-23 18:35
activity显隐跳转及值传递
/details/784512911.1Activity跳转//拨打电话(隐式启动)publicvoidclick(Viewview){Intentintent=newIntent();intent.
setAction
Mr.release
·
2017-11-05 19:52
android基础
将Android app加入小米白名单的解决方案
if(Build.MANUFACTURER.equals("Xiaomi")){Intentintent=newIntent();intent.
setAction
GUO18735177413
·
2017-10-24 23:17
技术方案
上一页
3
4
5
6
7
8
9
10
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他