登录
首页 » Java » Android BLE示例程序

Android BLE示例程序

于 2014-09-25 发布
0 216
下载积分: 1 下载次数: 0

代码说明:

Android BLE示例程序

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • Android手机虚拟GPS定位源码
    利用hook实现GPS虚拟定位
    2018-01-25下载
    积分:1
  • android 自定义Spinner源码实现
    android 自定义Spinner源码实现
    2015-04-22下载
    积分:1
  • Android Intent实例
    Android Intent开发实例 核心代码:package com.amaker.ch06.app;import com.amaker.ch06.app.R;import android.app.Activity;import android.content.Intent;import android.os.Bundle;import android.view.View;import android.view.View.OnClickListener;import android.widget.Button;import android.widget.EditText;/** * @author 郭宏志 * 发送Email */public class MainActivity extends Activity { // 声明视图组件 private EditText toEditText,subjectEditText,contentEditText; private Button sendBtn; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); // 实例化视图组件 toEditText = (EditText)findViewById(R.id.toEditText01); subjectEditText = (EditText)findViewById(R.id.subjectEditText01); contentEditText = (EditText)findViewById(R.id.contentEditText01); sendBtn = (Button)findViewById(R.id.sendButton01); // 为按钮添加单击监听器 sendBtn.setOnClickListener(listener); } // 发送按钮单击监听器 private OnClickListener listener = new OnClickListener() { @Override public void onClick(View v) { // 获得输入信息 String to = toEditText.getText().toString(); String subject = subjectEditText.getText().toString(); String content = contentEditText.getText().toString(); // 创建Intent Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); // 设置内容类型 emailIntent.setType("plain/text"); // 设置额外信息 emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{to}); emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, subject); emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, content); startActivity(Intent.createChooser(emailIntent, "发送邮件...")); } };}
    2014-11-24下载
    积分:1
  • android 标签云
    android 标签云
    2015-11-17下载
    积分:1
  • android 百度地图各种实例源码下载(可用)
    android 百度地图 源码
    2014-05-24下载
    积分:1
  • 游戏引擎jar包
    游戏引擎jar包
    2013-12-24下载
    积分:1
  • android 记事本 例子源码下载(初级版本)
    将数据写入文件了
    2014-09-15下载
    积分:1
  • android以get和post方式提交数据给WEB 完整实例源码下载
    android以get和post方式提交数据给WEB 完整实例源码下载
    2014-06-20下载
    积分:1
  • android 接收蓝牙数据绘制成波形
    android 接收蓝牙数据绘制成波形
    2021-05-06下载
    积分:1
  • android 高仿微信5.0版主界面UI效果 示例源码
    android 高仿微信5.0版主界面UI效果 拷贝到eclipse即可运行 (微信5.0版本)
    2014-02-28下载
    积分:1
  • 696518资源总数
  • 106253会员总数
  • 14今日下载