登录
首页 » Java » Bluetooth_fwj

Bluetooth_fwj

于 2016-06-22 发布 文件大小:232KB
0 184
下载积分: 1 下载次数: 3

代码说明:

  可以发送文件的蓝牙适配例子是一个可以选择文件并发送给对方的蓝牙例子源码,项目带有蓝牙可见性的控制和其他常规的功能,项目比较大,分了好多层但是比较给力的是源码有比较详细的注释,用到的朋友可以下载看一下,项目编译版本2.3.3默认编码UTF-8。(You can send files of Bluetooth adapter is an example to a file and send to the other Bluetooth example source code, control project with Bluetooth visibility and other routine functions, the project is relatively large, divided into many layers but more awesome is a more detailed source notes, the use of friends can look at the download the project compiled version of 2.3.3 default encoding UTF-8.)

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

发表评论

0 个回复

  • dell-lee-Travel-master
    Vue2.5开发去哪儿网App 从零基础入门到实战项目(Where does Vue2.5 develop to App? From zero base entry to actual combat project)
    2021-03-20 13:59:18下载
    积分:1
  • MemoryGame
    memory games sample code for eclipse open source program
    2012-04-16 03:29:28下载
    积分:1
  • 菜单三方控件
    菜单三方控件
    2014-10-04下载
    积分:1
  • Orong_tbzs
    详细介绍 - [ 聚融网贷款投标助手源码 ] 聚融网贷款投标助手源码是一个安卓版本的聚融网贷款投标助手项目源码,一般公司或者开发者都不会把这类内部使用的项目源码泄漏出来,这个项目是依托于他的官网的orong.cn,但是现在官网挂掉了,估计整个公司跑路了才会分享出来,因为项目缺少部分图片资源所以原项目会报错,我使用资源目录下的其他图片文件对缺少的图片资源进行了替代,可能图片显示会有错误但是整个项目可以正常的运行起来(Detailed financial network loan tender assistant source] Poly financial loans Network Bidding Assistant source is an Android version of the fusion of the net loan bidding assistant project source code, companies or developers won t leak out the internal use of the project source code. The project is relying on his official website orong.cn, but now official website hang, it is estimated that the company running the will share out, because the items missing parts of the picture resources so the original project will misstatement, I use resource directory under the other picture file to replace the missing image resources may picture shows there will be mistakes but the entire project can be normal operation)
    2016-05-30 13:36:23下载
    积分:1
  • 迭代范围 - 基于搜索算法
    Webstudy如何回答(可能有多个)范围内选择查询应答排名查询。每个选择查询对给定的字符串和一个字符串的集合之间的相似性阈值。在这种方式中,我们可以利用现有的近似串-选择技术,而无需修改其实现。我们开发所谓的“迭代范围搜索”(“IRS”的简称)的算法。算法1示出了algorithm.We的伪代码开始的初始相似性阈值,这可能是基于查询(第5行),计算出的固定值奥拉值。所述算法有两个步骤。
    2022-01-26 06:24:30下载
    积分:1
  • apache模块mod_concatx
    apache模块mod_concatx 合并多个js/css,有效提高js/css加载速度,有源码和d-apache module mod_concatx merge multiple js/css, effectively improve js/css loading speed, with source code and dll
    2022-02-03 05:33:33下载
    积分:1
  • 未移动的
    应用背景这是LEACH协议的实施很好的例子,为学生。即使你可以从这件事中获得胜利,因为我现在正在做,你必须提交你的代码,以便我可以轻松下载代码关键技术Java,图,LEACH,LEACH算法及实现学习目的的协议是很好的习惯
    2022-03-02 19:08:32下载
    积分:1
  • 获取系统图库的图片,调用系统相机,并生成预览,
    ** * 这个是进入相册显示所有图片的界面 *  * @author king * @QQ:595163260 * @version 2014年10月18日  下午11:47:15 */public class AlbumActivity extends Activity {//显示手机里的所有图片的列表控件private GridView gridView;//当手机里没有图片时,提示用户没有图片的控件private TextView tv;//gridView的adapterprivate AlbumGridViewAdapter gridImageAdapter;//完成按钮private Button okButton;// 返回按钮private Button back;// 取消按钮private Button cancel;private Intent intent;// 预览按钮private Button preview;private Context mContext;private ArrayList dataList;private AlbumHelper helper;public static List contentList;public static Bitmap bitmap;protected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(Res.getLayoutID("plugin_camera_album"));PublicWay.activityList.add(this);mContext = this;//注册一个广播,这个广播主要是用于在GalleryActivity进行预览时,防止当所有图片都删除完后,再回到该页面时被取消选中的图片仍处于选中状态IntentFilter filter = new IntentFilter("data.broadcast.action");  registerReceiver(broadcastReceiver, filter);          bitmap = BitmapFactory.decodeResource(getResources(),Res.getDrawableID("plugin_camera_no_pictures"));        init();initListener();//这个函数主要用来控制预览和完成按钮的状态isShowOkBt();}BroadcastReceiver broadcastReceiver = new BroadcastReceiver() {           @Override          public void onReceive(Context context, Intent intent) {          //mContext.unregisterReceiver(this);            // TODO Auto-generated method stub          gridImageAdapter.notifyDataSetChanged();        }      };  // 预览按钮的监听private class PreviewListener implements OnClickListener {public void onClick(View v) {if (Bimp.tempSelectBitmap.size() > 0) {intent.putExtra("position", "1");intent.setClass(AlbumActivity.this, GalleryActivity.class);startActivity(intent);}}}// 完成按钮的监听private class AlbumSendListener implements OnClickListener {public void onClick(View v) {overridePendingTransition(R.anim.activity_translate_in, R.anim.activity_translate_out);intent.setClass(mContext, MainActivity.class);startActivity(intent);finish();}}// 返回按钮监听private class BackListener implements OnClickListener {public void onClick(View v) {intent.setClass(AlbumActivity.this, ImageFile.class);startActivity(intent);}}// 取消按钮的监听private class CancelListener implements OnClickListener {public void onClick(View v) {Bimp.tempSelectBitmap.clear();intent.setClass(mContext, MainActivity.class);startActivity(intent);}}// 初始化,给一些对象赋值private void init() {helper = AlbumHelper.getHelper();helper.init(getApplicationContext());contentList = helper.getImagesBucketList(false);dataList = new ArrayList();for(int i = 0; i= PublicWay.num) {toggleButton.setChecked(false);chooseBt.setVisibility(View.GONE);if (!removeOneData(dataList.get(position))) {Toast.makeText(AlbumActivity.this, Res.getString("only_choose_num"),200).show();}return;}if (isChecked) {chooseBt.setVisibility(View.VISIBLE);Bimp.tempSelectBitmap.add(dataList.get(position));okButton.setText(Res.getString("finish") "(" Bimp.tempSelectBitmap.size() "/" PublicWay.num ")");} else {Bimp.tempSelectBitmap.remove(dataList.get(position));chooseBt.setVisibility(View.GONE);okButton.setText(Res.getString("finish") "(" Bimp.tempSelectBitmap.size() "/" PublicWay.num ")");}isShowOkBt();}});okButton.setOnClickListener(new AlbumSendListener());}private boolean removeOneData(ImageItem imageItem) {if (Bimp.tempSelectBitmap.contains(imageItem)) {Bimp.tempSelectBitmap.remove(imageItem);okButton.setText(Res.getString("finish") "(" Bimp.tempSelectBitmap.size() "/" PublicWay.num ")");return true;}return false;}public void isShowOkBt() {if (Bimp.tempSelectBitmap.size() > 0) {okButton.setText(Res.getString("finish") "(" Bimp.tempSelectBitmap.size() "/" PublicWay.num ")");preview.setPressed(true);okButton.setPressed(true);preview.setClickable(true);okButton.setClickable(true);okButton.setTextColor(Color.WHITE);preview.setTextColor(Color.WHITE);} else {okButton.setText(Res.getString("finish") "(" Bimp.tempSelectBitmap.size() "/" PublicWay.num ")");preview.setPressed(false);preview.setClickable(false);okButton.setPressed(false);okButton.setClickable(false);okButton.setTextColor(Color.parseColor("#E1E0DE"));preview.setTextColor(Color.parseColor("#E1E0DE"));}}public boolean onKeyDown(int keyCode, KeyEvent event) {if (keyCode == KeyEvent.KEYCODE_BACK) {intent.setClass(AlbumActivity.this, ImageFile.class);startActivity(intent);}return false;}@Overrideprotected void onRestart() {isShowOkBt();super.onRestart();}
    2014-12-10下载
    积分:1
  • 构造函数的示例在 JAVA 中
    /* * 到更改此许可证标头,在项目属性中选择许可证标头。 * 对更改此模板文件,选择工具 |模板 * 并在编辑器中打开该模板。 */ 包 enkapsulasi2 ; /** * * @author 波多黎各 */ 公共类 Enkapsulasi2 { /** * @param 参数的命令行参数 */
    2022-01-26 00:39:38下载
    积分:1
  • android
    android开发相关文档,android学习基础文档、界面切换效果总结(the book of android)
    2013-09-09 08:37:24下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载