使用intent可以吊起其他应用 例如发送电子邮件 ...
分类:
移动开发 时间:
2019-07-31 15:23:23
阅读次数:
92
<activity android:name=".MainActivity" > <intent-filter> <action android:name="android.intent.action.MAIN" /> //主活动 <category android:name="android.in ...
分类:
移动开发 时间:
2019-07-23 09:47:06
阅读次数:
132
2.3 使用 Intent 在 Activity 之间穿梭 在上一节中我们已经学会了如何创建一个 Activity 了。对于一个应用程序来说,肯定不可能只有一个 Activity。下面就来学习多个 Activity 是专门跳转的。 2.3.1 使用显式 Intent 对于创建 Activity 的过 ...
分类:
移动开发 时间:
2019-07-23 00:21:15
阅读次数:
120
一、问题发现 命令行进入数据库实例手动给某张表进行alter操作,发现如下报错。 二、问题定位 上述这种错误常见是MySQL实例关闭或者非正常宕机、MySQL连接超时、MySQL请求线程被kill。根据现有的业务场景,审核平台能正常连接数据库甚至连接有问题的数据库建表,MySQL服务对外正常,错误日 ...
分类:
数据库 时间:
2019-07-03 10:37:46
阅读次数:
127
<intent-filter><intent-filter android:icon="drawable resource" android:label="string resource" android:priority="integer" > <action> <category> <data> ...
分类:
移动开发 时间:
2019-06-28 00:39:24
阅读次数:
187
JFxUtils "项目地址" 介绍 这是一个JFX的工具库,Intent可以简单地实现打开一个新窗口并传递数据,DialogBuilder可以简单地生成对话框,MyUtils有些常用的功能 使用 与`JavaFxTemplate JavaFxTemplate`模板 JavaFxTemplate模版 ...
分类:
编程语言 时间:
2019-06-23 22:31:16
阅读次数:
196
package com.lidaochen.test001; import android.content.Intent; import android.content.IntentFilter; import android.support.v7.app.AppCompatActivity; im... ...
分类:
移动开发 时间:
2019-06-15 23:04:49
阅读次数:
155
package com.lidaochen.test001; import android.content.Intent; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import androi... ...
分类:
移动开发 时间:
2019-06-15 13:36:57
阅读次数:
151
1,高版本android已经不允许只通过action来bindService/startService,可以通过: intent.setPackage("XXXX"); 来指定应用的applicationID,注意这里并不是包名。所以,即是在两个应用中都存在同样包名、同样action的服务,也不会出 ...
分类:
移动开发 时间:
2019-06-10 13:56:22
阅读次数:
175
messenger内部也是实现aidl通信,所以可以看做一个轻量级aidl,但相对比较简单.首先开启一个服务并实现一个Handler用来处理消息,在onbind方法中返回IBinder对象,通过Serviceconnect绑定服务,并把IBinder对象传递到Serviceconnect的IBind ...
分类:
系统相关 时间:
2019-05-31 18:11:53
阅读次数:
113