随笔分类 -  Android

Android
MPAndroidChart开源图表库之折线图
摘要:参考:http://blog.csdn.net/shineflowers/article/details/447047231.在布局文件中加入组件2.设置图表的属性chart1 = (LineChart) findViewById(R.id.char1);lineChart.setDrawBorde... 阅读全文
posted @ 2015-07-19 10:29 梦星尘 阅读(1354) 评论(0) 推荐(0)
Android的intent之间复杂参数的传递
摘要:本篇文章来源于 Linux公社网站(www.linuxidc.com) 原文链接:http://www.linuxidc.com/Linux/2012-04/58732.htm一、传递List和List以下以传递List为例,发送List语法为:intent.putStringArrayListEx... 阅读全文
posted @ 2014-05-24 21:46 梦星尘 阅读(660) 评论(0) 推荐(0)
Android 下的 USB HID 设备读写
摘要:UsbInterfaceusbInterface=usbDevice.getInterface(0);//USBEndpoint为读写数据所需的节点UsbEndpointinEndpoint=usbInterface.getEndpoint(0);//读数据节点UsbEndpointoutEndpoint=usbInterface.getEndpoint(1);//写数据节点UsbDeviceConnectionconnection=usbManager.openDevice(usbDevice);connection.claimInterface(usbInterface,true);//发 阅读全文
posted @ 2014-01-26 18:52 梦星尘 阅读(9545) 评论(0) 推荐(1)