首先下载相应版本的ADT Bundle,以adt-bundle-windows-x86_64(64位操作系统)为例。将ADT Bundle解压后,会 看到eclipse目录、sdk目录和SDK Manager.exe,具体如图1所示。 图1 Google sdk bundle 开发工具集合 接下来针 ...
分类:
其他好文 时间:
2019-04-13 13:50:45
阅读次数:
434
1.官网下载mysql-8.0.15-1.el7.x86_64.rpm-bundle.tar,解压到 /usr/local/mysql/ 目录下; 2.依次安装mysql组件: # rpm -ivh mysql-community-common-8.0.15-1.el7.x86_64.rpm # r ...
分类:
数据库 时间:
2019-04-12 13:17:47
阅读次数:
192
1)接收系统广播:a.动态注册监听网络变化 b.静态注册实现开机启动 2)发送自定义广播:a.发送标准广播 b.发送有序广播 3)使用本地广播 第五章 5.1 广播机制 Android中的每个程序都可以对自己感兴趣的广播进行注册。发送广播的方法借助Intent,接收广播的方法则为广播接收器(Broa ...
分类:
移动开发 时间:
2019-04-10 15:11:26
阅读次数:
226
package com.example.alarm; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.wid... ...
分类:
其他好文 时间:
2019-04-06 19:15:16
阅读次数:
207
创建: 2019/04/06 随着工龄的增长, 用过的包管理工具也越来越多. 从一开始的gem/bundle, cocoaPods到npm, 又到yarn. 虽然干的都是一件事, 但是不同的工具的使用方法各不相同.以至于如今除了对gem/bundle, cocoaPods以外, 对于npm, yar ...
分类:
其他好文 时间:
2019-04-06 09:19:34
阅读次数:
82
1.安装包下载 https://dev.mysql.com/downloads/mysql/5.7.html#downloads 选择下面的RPM Bundle这个直接下载(wget有点慢,我直接用迅雷下载的) wget https://cdn.mysql.com//Downloads/MySQL- ...
分类:
数据库 时间:
2019-04-06 00:20:30
阅读次数:
160
```java
package cxa.com.myapplication; import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import and... ...
分类:
移动开发 时间:
2019-04-06 00:05:38
阅读次数:
155
IntentService是一个异步处理请求的服务,通过Context startService(Intent)可以将请求发送给IntentService,IntentService在工作线程中依次串行处理每一个Intent,当处理完所有请求后,IntentService会自动停止。 在Intent ...
分类:
其他好文 时间:
2019-04-03 16:38:28
阅读次数:
147
原文地址:https://liugang594.iteye.com/blog/1328050 简单介绍一下如何在一个osgi的bundle中内嵌使用http服务 一、基础 首先看看在OSGI中怎么启动内嵌的jetty容器。看下图: 其实简单的只选中"org.eclipse.osgi"和"org.ec ...
分类:
Web程序 时间:
2019-04-03 12:23:24
阅读次数:
151
1.活动的基本用法: 1) 手动创建活动、创建加载布局 2) 在AndroidManifest文件中注册 3) 在活动中添加Button、Toast、Menu 4) 销毁活动 2.Intent 1) 显式intent 2) 隐式intent 3) 关于Intent的其他应用 4) 活动间数据传递 2... ...
分类:
移动开发 时间:
2019-04-02 12:23:58
阅读次数:
179