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
Inten
android 8.0 接收开机广播 (应用自启)
Intent.ACTION_BOOT_COMPLETED);BootReceiverBootReceiver=newBootReceiver();this.registerReceiver(BootReceiver,
inten
林焰龙
·
2020-07-30 07:53
广播
Android 关于Intent的一些简略总结
Stringaction)|构造一个指定action的Intent||Intent(Stringaction,Uriuri)|构造一个指定action和uri(相当于同时设定了data)的Intent||
Inten
超级小白龙
·
2020-07-30 04:34
Android
android蓝牙开发——简单的文字传输
newIntent(BluetoothAdapter.ACTION_REQUEST_ENABLE);startActivityForResult(enabler,RESULT_FIRST_USER);//使蓝牙可见
Inten
hzc284524197
·
2020-07-30 01:31
android相关
自己的应用中调用android系统闹钟
importjava.util.List;importandroid.app.Activity;importandroid.content.ComponentName;importandroid.content.
Inten
renwfy9
·
2020-07-29 23:47
android
android
string
button
thread
system
class
从一个APP启动另一个APP的activity的方式
当前APP的代码Intentintent=newIntent();//这里是采用的自定义actionintent.setAction("transBundle.app");startActivity(
inten
追yi流年
·
2020-07-29 21:20
android应用
Android 的 IntentService 与 Service
放在
Inten
_卫超
·
2020-07-29 21:30
android
基础知识
Android分享---调用系统自带的分享功能
IntenttextIntent=newIntent(Intent.ACTION_SEND);textIntent.setType("text/plain");textIntent.putExtra(
Inten
姜康
·
2020-07-29 19:35
Android
IntentService简介
客户端可以通过startService(
Inten
Robin Hu
·
2020-07-29 19:00
Android基础
Android使用系统Intent实现分享功能及将应用加入分享列表
可查看Android判断Intent是否存在,是否可用1、应用增加分享功能publicstaticvoidshareText(Contextcontext,Stringtitle,Stringtext){
Inten
chenliujiang1989
·
2020-07-29 17:53
Android.content.Intent学习心得
方法2:Intentintent=newIntent();intent.setClass(FirstActivity.this,SecondActivity.class);startActivity(
inten
Mis_wenwen
·
2020-07-29 16:57
【杭电】[1242]Rescue
做的不过对于这种水题其实都一样啦没什么坑点用一个二维数组保存每个点到终点的距离然后递归搜索遇见x就+2遇见.就+1#includeintinf=9999999;charmap[220][220];intdis[220][220];intn,m;intmn,mm;
inten
BoilTask
·
2020-07-29 14:48
杭电
搜索&DFS&BFS
Android应用中如何调用系统闹钟及日历
newIntent(AlarmClock.ACTION_SET_ALARM);startActivity(alarms);别忘了在AndroidManifest.xml文件中添加权限:2.跳转到日历:
Inten
拭心
·
2020-07-29 14:17
Android
零碎知识
Android应用自启动
android.intent.action.PACKAGE_REPLACED")){startApp(context);}elseif(intent.getAction().equals("android.
inten
清风幽兰
·
2020-07-29 00:21
Android
Android应用自启动
android
studio
android
Android通过蓝牙获取手机短信技术调研
blog.csdn.net/u012439416/article/details/54349812(蓝牙map协议源码解析)这篇文章中有提到通过MAP方式来实现蓝牙读取短信,具体的实现方式为:1//注册广播2
Inten
宋者为王
·
2020-07-28 12:00
Android应用创建桌面快捷图标
Intentshortcut=newIntent("com.android.launcher.action.INSTALL_SHORTCUT");//TODO:2017/6/25添加快捷名称shortcut.putExtra(
Inten
that_is_this
·
2020-07-28 07:42
大二用C++写的图邻接矩阵表示法
defineUNVISITED0;#defineVISITED1;classEdge{public:intstart,end;intweight;Edge(){start=end=weight=0;}Edge(intst,
inten
风万里
·
2020-07-28 01:06
C/C++
Android应用程序的入口Activity
.每个Activity没有很紧密的联系,因为我们可以在自己的程序中调用其它Activity,特别是调用自己的代码之外生成的Activity,比如android提供的发短信或者打电话的Activity.
Inten
Calm_0909
·
2020-07-27 15:28
拍照或选择图片库中的图片
获得调用相机的Intent对象,然后启动该Intent对象Intentintent=BitmapHelper.getPhotographIntent();startActivityForResult(
inten
likaizzk
·
2020-07-16 04:32
Android开发——动态功能(三)Intent实现网页跳转的几种方式:代码示例
JumpBActivity.class);startActivity(intent);//显示2:设置类名再调用//参数:当前页面内容,目标的class文件名称Intentintent=newIntent();
inten
奔跑的狮子
·
2020-07-15 07:16
#
Android博文杂记
#
Android零基础学习
android intent.setDate方法
mobileText.getText().toString();2打电话的权限在功能清单中加入代码编写代码实现Button的点击相应Intentintent=newIntent();intent.setAction("android.
inten
weixin_34417814
·
2020-07-15 06:01
Android之获取本地图片并压缩方法
1Intentintent=newIntent(Intent.ACTION_PICK,null);//从列表中选择某项并返回所有数据2
inten
weixin_30502965
·
2020-07-15 03:07
Android 中Intent的putExtra()方法的值传递
intent.setclass(A.this,B.class);//这一步其实是跳转到B.classActivity或者:Intentintent=newIntent(A.this,B.class);
inten
Joyven2015
·
2020-07-14 04:16
Android
Java
Android架构系列-封装自己的okhttp
219ee2afb4f30Android架构系列文章该系列文章会不断更新Android项目开发中一些好的架构和小技巧系列一Android架构系列-基于MVP创建适合自己的架构系列二Android架构系列-如何优美的写
Inten
Tsy远
·
2020-07-14 03:45
小tip
onActivityresult方法,注意不能在fragment里实现@OverrideprotectedvoidonActivityResult(intrequestCode,intresultCode,
Inten
被风扬起的沙
·
2020-07-13 19:09
nrf51822裸机教程-RTC
(TICK,OVRFLW,COMPARE0-3事件)
INTEN
,INTENSET,INTENCLR.这三个寄存器用来设置某个事件发生时是否触发RTC中断。
changeyourmind
·
2020-07-13 03:33
NORDIC
nRF5
【安卓错误】Error while executing: am start -n 解决方案
com.test.BTClient.MainActivity”-aandroid.intent.action.MAIN-candroid.intent.category.LAUNCHERStarting:Intent{act=android.
inten
废人一枚
·
2020-07-12 17:04
#
安卓常见错误汇总
Error
while
安卓错误
am
start
-n
Intent调用和意图过滤器intent-filter
匹配原则:1)Intent具有的Action,意图过滤器必须有2)
Inten
willho
·
2020-07-09 11:43
程序设计实训第一次作业---第二题、数组与排序A
【问题描述】从标准输入连续读入n(n#include#include#defineN10typedefstructStudents{intid;charname[10];intmath;
inten
;intch
icodebugs
·
2020-07-09 06:37
C
(Android)Wifi-Direct直连
大概可以分为以下步骤:1.设置以下权限,并且注意最小sdk=142.创建一个广播接收器,通过创建
Inten
weixin_30475039
·
2020-07-08 13:44
[Android]后台Service 弹出自定义dialog
的制作和弹出@OverridepublicvoidonCreate(){//注册一个receiver并每分钟弹出一个dialog//Intent.ACTION_TIME_TICK这个广播每分钟接收一次
Inten
于海洋-童鞋
·
2020-07-08 09:09
关于Android Activity之间传递数据的6种方式
使用
Inten
的putExtra传递第一个Activity中?
淼淼1111
·
2020-07-08 08:18
android
3.18
intent的动作(action)设定为打电话intent.setAction(Intent.ACTION_CALL);//把其中的数据设置成“tel://xxxxxxxx”,parse的中文翻译为“解析”
inten
.setData
Pyuri
·
2020-07-08 07:40
安卓使用intent跳转界面时传递参数
AnotherActivity.class);//message相当于一个标签,text为传递的字符串intent.putExtra("amessage",text);//跳转startActivity(
inten
heue
·
2020-07-07 21:31
笔记
python实现编辑距离edit distance
word1="horse",word2="ros"输出:3解释:horse->rorse(将'h'替换为'r')rorse->rose(删除'r')rose->ros(删除'e')例2:输入:word1="
inten
柒久酒
·
2020-07-07 11:00
Android的后台任务IntentService
那些类中最常用的就是
Inten
哈德根
·
2020-07-07 08:11
android scheme 跳转应用 如何获取intent传的参数
已经启动过了会重新唤醒(从app跳转到网页或其它app在跳转回来)protectedvoidonNewIntent(Intentintent){super.onNewIntent(intent);setIntent(
inten
周亚权
·
2020-07-07 07:20
android
android之应用程序启动第三方应用
一、QQ1.第三方应用1)通过包名启动PackageManagerpackageManager=this.getPackageManager();
Inten
generallizhong
·
2020-07-04 16:54
Android
C语言小游戏-是男人就坚持100秒
include#include#include#include//定义需要用到的全局变量intcanvas[100][100];//画布大小intenemy_x[50];//敌机intenemy_y[50];
inten
逼哥很疯狂
·
2020-07-04 15:20
C语言游戏
android intent.setDate方法
mobileText.getText().toString();2打电话的权限在功能清单中加入代码编写代码实现Button的点击相应Intentintent=newIntent();intent.setAction("android.
inten
baiting0317
·
2020-07-04 11:00
android
mobile
电话
button
string
网络
第三章 队列
函数接口定义:intQueueLen(SqQueueQ);//队列长度
intEn
ababychicken
·
2020-07-01 16:12
修改应用 applicationid 后运行,报找不到 Mainactivity
aandroid.intent.action.MAIN-candroid.intent.category.LAUNCHERStarting:Intent{act=android.intent.action.MAINcat=[android.
inten
yoomaz
·
2020-07-01 14:58
学生信息管理系统源代码-C语言
#include#include#include#includestructstu_type{charnum[15];charname[10];intage;intc;intmath;
inten
;intsum
怼你嶶笑纯屬礼貌
·
2020-06-29 08:15
作品
Android连载21-复习以往内容(四)
actioncom.example.activitytest.ACTION_START并且响应category才可以在FirstActivity.java中进行设置Intent.每个Intent只能指定一个action,但是可以指定多个category(1)Intent构造函数,有
Inten
心悦君兮君不知-睿
·
2020-06-29 00:00
Android连载21-复习以往内容(四)
actioncom.example.activitytest.ACTION_START并且响应category才可以在FirstActivity.java中进行设置Intent.每个Intent只能指定一个action,但是可以指定多个category(1)Intent构造函数,有
Inten
心悦君兮君不知-睿
·
2020-06-29 00:00
状态栏 手机信号,数据 wifi 图标显示判断
importandroid.app.Activity;importandroid.content.BroadcastReceiver;importandroid.content.Context;importandroid.content.
Inten
_110
·
2020-06-28 20:51
第三方app跳转自启动页面(小米,华为,oppo,vivo,魅族)
publicstaticvoidopenAutoStartSetting(Contextcontext){Stringsystem=android.os.Build.BRAND;Intentintent=newIntent();
inten
宁君
·
2020-06-27 14:12
android
接收广播实现全局弹窗
publicclassLoginBroadCastReceiverextendsBroadcastReceiver{@OverridepublicvoidonReceive(finalContextcontext,
Inten
Smart_Arvin
·
2020-06-26 22:31
Java中List几种去重方式的比较
通过计算时间差来对比,当然,计算的方式和比较的方式可能不专业,有疑问大家可以指出来计算时间差的方法在核心代码之前加入:intstartTime=System.currentTimeMillis()在核心代码之后加入:
inten
tangyaya8
·
2020-06-26 18:49
感悟总结
Android基础(六):广播消息
发送广播消息创建一个Intent,调用sendBroadcast()函数就可把
Inten
Vlad Craste
·
2020-06-25 12:53
Android
Java
函数方法备忘
,Toast.LENGTH_SHORT).show();
Inten
laose307
·
2020-06-24 02:36
Android
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
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
其他