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
提高服务运行级别(前台服务)
Notificationnoti=newNotification();noti.icon=R.drawable.ic_launcher;Intentintent=newIntent();intent.
setAction
GitLqr
·
2016-04-17 10:08
安卓工具基础代码库
Android系统中拍照功能的调用
直接调用系统的拍照Intentj=newIntent(Intent.ACTION_CAMERA_BUTTON); //j.
setAction
(Intent.ACTION_CAMERA_BUTTON);
orzyang
·
2016-04-15 17:00
android
显式Intent调用以及通过action启动activity
ImplicitintentswithstartServicearenotsafe.所以在intent中需指定引用包名:Intent sub_intent = new Intent(); sub_intent.
setAction
Turman
·
2016-04-11 11:00
下载好自动安装
privatevoidinstallApk(Filefile){ Intentintent=newIntent(); intent.
setAction
("android.intent.action.VIEW
An_Illusion
·
2016-04-11 00:00
android
Android自定义照相机详解
启动相机的两种方式1.直接启动系统相机Intentintent=newIntent();intent.
setAction
(MediaStore.ACTION_IMAGE_CAPTURE);startActivity
一口仨馍的博客
·
2016-04-08 15:34
Android 手把手带你玩转自定义相机
启动相机的两种方式1.直接启动系统相机Intentintent=newIntent(); intent.
setAction
(MediaStore.ACTION_IMAGE_CAPTURE); startActivity
qq_17250009
·
2016-04-07 19:00
android
自定义相机
相机开发
二维码扫描框
相机图片变形
Intent 使用
调用浏览器:Intentintent=newIntent(); intent.
setAction
("android.intent.action.VIEW");//显示指定数据 intent.setData
An_Illusion
·
2016-04-06 23:00
调用Android系统设置项
com.android.settings", "com.android.settings.WirelessSettings"); mIntent.setComponent(comp); mIntent.
setAction
zahuopuboss
·
2016-04-01 16:00
android
android小知识点代码片段
1拨打电话的操作播打电话号码Intentintent=newIntent(); intent.
setAction
(Intent.ACTION_CALL); intent.setData(Uri.parse
z_fishLong
·
2016-03-28 21:00
android
分享QQ、微信 好友 ,空间、 新浪 的三种方式(验证通过)
、新浪 的两种方式一、不经过第三方sdk直接调用系统自带的分享 1.分享纯文本到qq好友(仅此一种不限文字)IntentsendIntent=newIntent(); sendIntent.
setAction
u010194271
·
2016-03-24 10:00
android
qq
微信
androidstudio
[android] 隐式意图激活另外一个activity
随着api的升级,系统的很多应用包名和类名都改掉了,所以很多时候,打开系统应用的时候会报错,隐式意图就是解决组件之间松耦合,描述动作行为 获取Intent对象,通过new出来调用Intent对象的
setAction
陶士涵
·
2016-03-23 21:00
第一次使用Markdown在线编译器写博客
不管是页面牵转,还是传递数据,或是调用外部程序,系统功能都要用到Intent列表1.从google搜索内容Intentintent=newIntent();intent.
setAction
(Intent.ACTION_WEB_SEARCH
xiaoduantuilalalal
·
2016-03-19 12:00
Android 启动其他app,如微博/微信等
ComponentName cmp = new ComponentName("com.sina.weibo", "com.sina.weibo.EditActivity"); intent.
setAction
SRain215
·
2016-03-14 15:00
工具类
启动其他app
打开系统东西
发送短信Intentintent=newIntent(); intent.
setAction
(Intent.ACTION_SEND); intent.setType("text/plain"); intent.putExtra
xiaoguiyixue
·
2016-03-10 10:00
获取用户头像功能
*1弹出对话框选择本地相册或者拍照上传 *1.1本地相册上传 *Intentintent1=newIntent(); intent1.setType("image/*"); intent1.
setAction
随易来了
·
2016-03-08 09:00
创建快捷方式
/***快捷方式*/ privatevoidcreateShortcut(){ Intentintent=newIntent(); intent.
setAction
("com.android.launcher.action.INSTALL_SHORTCUT
u013270444
·
2016-03-06 00:00
Activity启动系统服务
*1、启动浏览器: *intent.
setAction
(Intent.ACTION_VIEW); *Uriuri=Uri.parse("http://www.sina.com"); *intent.setData
lvyoujt
·
2016-03-05 21:00
Android开发之Intent跳转到系统应用中的拨号界面、联系人界面、短信界面
首先,我们先看拨号界面,代码如下:Intentintent=newIntent(); intent.
setAction
("android.intent.
jiyidehao
·
2016-03-02 22:00
java.lang.IllegalArgumentException: Service Inten
Intent 异常是说必须明确的指出intent即android5.0之后不能载用隐式意图操作service而应该是用显式的意图操作service如:service = Intent()service.
setAction
OSCN仔仔
·
2016-02-24 15:00
android
service
intent
Develop -- Training(九) -- 分享简单数据
发送简单的数据给其他应用程序发送文本内容IntentsendIntent=newIntent(); sendIntent.
setAction
(Intent.ACTION_SEND); sendIntent.putExtra
u012301841
·
2016-02-23 23:00
intent
android官网
意图过滤器
android 获取图片
Android获取手机或者内存卡里面的图片有两种方式1.这是通过一种actionIntentintent=newIntent(); intent.
setAction
(Intent.ACTION_GET_CONTENT
u013270444
·
2016-02-22 11:00
android
有序广播
住:需要在mainfast中通配置权限并使用权限Intentintent=newIntent(); intent.
setAction
("broadcast_youxu"); sendOrderedBroadcast
shb2058
·
2016-02-19 12:00
Android开发中应用程序分享功能实例
分享给大家供大家参考,具体如下:IntentshareIntent=newIntent();shareIntent.
setAction
(Intent.ACTION_SEND);//设置类型shareIntent.setType
lg878398509
·
2016-02-19 10:06
几种常用的隐式Intent用法
1.从google搜索内容 Intentintent=newIntent(); intent.
setAction
(Intent.ACTION_WEB_SEARCH); intent.putExtra(SearchManager.QUERY
legend12300
·
2016-02-19 09:00
android 入门 007(界面跳转)
自定义界面) 界面层: java层 publicvoidclick_jump_sencond_yinshi(Viewv) { Intentintent=newIntent(); intent.
setAction
每天进步一点点!
·
2016-02-18 15:00
应用内调用系统的照相机拍照的方法
Intentintent=newIntent(); intent.
setAction
("android.intent.category.DEFAULT"); //拍照后照片存放的路径和名字 Filefile
zhangli_
·
2016-02-12 00:00
Android5.0以后隐式启动Service异常的解决方案
Android5.0以后隐式启动Service,如下Intent intent = Intent(); intent.
setAction
(); bindService(intent, , Context
海阔天空玩世不恭
·
2016-01-29 16:00
Android使用Intent启动Service的Intent必须是显式的
今天使用Intent来启动Service时,代码如下://为Intent设置Action属性 intent.
setAction
("com.hust.service"); start.setOnClickListener
tuke_tuke
·
2016-01-25 15:00
service
intent
Android实现从activity中停止Service的方法
分享给大家供大家参考,具体如下:1、在AndroidManifest.xml注册Service2、在Activity中调用finalIntentintent=newIntent();intent.
setAction
nosxcy
·
2016-01-21 09:48
项目小结
多缓存一个页面2.浮动按钮 3.Snackbar的使用,对比toast Snackbar.make(view,“Replacewithyourownaction”,Snackbar.LENGTH_LONG).
setAction
pengpai1
·
2016-01-15 18:00
android
在Android 6.0 设备上动态获取权限
下面从自己一开始的问题入手实现拨号功能说到拨号,一个Intent就搞定,代码如下,privatevoidcallDirectly(Stringmobile){Intentintent=newIntent();intent.
setAction
kangliang1230
·
2016-01-14 13:00
android
Android开发之浏览器用法实例详解(调用uc,opera,qq浏览器访问网页)
分享给大家供大家参考,具体如下:一、启动android默认浏览器Intentintent=newIntent();intent.
setAction
("android.intent.action.VIEW
wudihan
·
2016-01-12 09:43
Android 通过Intent调用系统功能和Action动作和服务广播【大全】
1.从google搜索内容Intentintent=newIntent();intent.
setAction
(Intent.ACTION_WEB_SEARCH);intent.putExtra(SearchManager.QUERY
bruceyangjie
·
2016-01-06 23:00
在一个apk中调用另外一个apk中的activity
显式启动、隐式启动;显式启动的话肯定不行,那就只能使用隐式启动了,因为之前的时候,曾经如下方式隐式启动,弹出了一个app的选择框1Intentintent=newIntent(); 2intent.
setAction
张慧俊
·
2015-12-30 13:00
Android 拨打电话
Stringmobile=phone.getText().toString();//得到了用户输入的手机号 Intentintent=newIntent(); intent.
setAction
(Intent.ACTION_CALL
li5685918
·
2015-12-29 18:00
Android简单调用相机Camera功能,实现打开照相功能
在最开始接触Android相机功能之前,先来体验一下Android调用系统照相功能吧核心代码 Intentintent=newIntent();//调用照相机 intent.
setAction
("android.media.action.STILL_IMAGE_CAMERA
w_yunlong
·
2015-12-29 11:00
Android使用Intent实现拨打电话的动作
AnroidMainfest.xml中加入通话权限,打开这个文件,在application节点的前面加入以下内容 下面,使用Intent实现打电话的这个动作,看代码 Intentintent=newIntent(); intent.
setAction
w_yunlong
·
2015-12-29 11:00
android 之 Camera
,首先就从制造图片的地方开始写起–Camera如果你的app里面只是需要拍一张照片,只需要调用系统的照相机就可以满足你的需求了通过ACTION_IMAGE_CAPTURE调用系统的照相机intent.
setAction
ElinaVampire
·
2015-12-28 10:00
android
Camera
跳转到拨号、联系人、短信界面
首先,我们先看拨号界面,代码如下:Intentintent=newIntent(); intent.
setAction
("android.intent.action.CALL_BUTTON
u012264122
·
2015-12-21 16:00
android 外部启动activity,自定义action,action常量大全
newComponentName("com.book.android2", "com.book.android2.AndroidSearch"); i.setComponent(cn); i.
setAction
u012808234
·
2015-12-16 15:00
android
android
action
intent
外部启动activity
自定义action
调用系统相机
照相与摄像功能都可以通过Intent的
setAction
方法来调用分别是MediaStore.ACTION_IMAGE_CAPTURE与MediaStore.ACTION_VIDEO_CAPTURE。
YuLi1207
·
2015-12-14 09:19
Android调用系统相机
调用系统相机
照相与摄像功能都可以通过Intent的
setAction
方法来调用分别是MediaStore.ACTION_IMAGE_CAPTURE与MediaStore.ACTION_VIDEO_CAPTURE。
YuLi1207
·
2015-12-14 09:19
Android调用系统相机
Android开发者文档笔记(二)
***分享简单的数据**两个Application数据*发送文本内容ntentsendIntent=newIntent(); sendIntent.
setAction
(Intent.ACTION_SEND
u013755250
·
2015-12-08 20:00
Android开发
数据
文档
应用
android(27)(显示意图之打开浏览器)
打开浏览器: publicvoidclick(Viewview){ // // // // // // // Intentintent=newIntent(); intent.
setAction
("android.intent.action.VIEW
u014756517
·
2015-12-07 10:00
android
浏览器
显示意图
android典型代码系列(二十七)------锁屏打开浏览器传数据,解屏最小化浏览器
已经获取了用户的浏览器的访问记录,通过浏览器上传数据到服务器而不是在代码中通过 //httpconnection的方式传递 Intentuploadintent=newIntent(); uploadintent.
setAction
fandong12388
·
2015-12-06 13:00
android
浏览器
Android Activity 启动
通过
setAction
()方法或在清单文件AndroidManifest.xml中设置。默认为DEFAULT。Data:通常是URI格式定义的操作数据。例如:tel://。
kongbaidepao
·
2015-11-30 12:00
activity启动
Broadcast
beforesendBroadcastmustnewIntent();Intentintent=newIntent();//beforesendBroadcastmustsetAction();intent.
setAction
wk1063645973
·
2015-11-25 18:00
android
Broadcast
Android 开发之如何屏幕返回键
@Override public void onBackPressed() {//打开桌面的activity Intent intent = new Intent(); intent.
setAction
OSCN仔仔
·
2015-11-18 15:00
Android VideoView通过Intent.ACTION_VIEW播放视频(4)
播放视频的方式不唯一,简单、轻量级的播放技术路线是通过调用系统接口Intent.ACTION_VIEW设置参数播放,如下面的代码所示:Intentintent=newIntent(); intent.
setAction
zhangphil
·
2015-11-17 16:00
android
android之相机开发
action为:android.media.action.STILL_IMAGE_CAMERA关键代码:Intent intent = new Intent(); //调用照相机 intent.
setAction
茗香墨语
·
2015-11-16 11:00
上一页
5
6
7
8
9
10
11
12
下一页
按字母分类:
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
其他