android
文章平均质量分 82
弱水三千_fllik
这个作者很懒,什么都没留下…
展开
-
往android - Eclipse中导入新项目时,出现Remove @Override annotation错误提示
原因:编译器版本的问题。Java 1.5的编译器默认对父类的方法进行覆盖,采用@Override进行说明;但1.6已经扩展到对接口的方法;所以如果还是以Java 1.5的编译器来编译的话,会出现错误。解决办案:方案一、在Eclipse中,compiler 都得设置到1.6。这包括Eclipse --> preference --> compiler 下要改成1.6.原创 2013-12-09 10:03:47 · 3247 阅读 · 0 评论 -
Shared library "Hello World!" for Android
本文转载自:http://blog.sina.com.cn/s/blog_5b9ea9840100avfy.htmlThis article describes the trace I followed when I managed to compile and run the shared library type of "Hello, world!" for Andro转载 2013-04-30 15:24:24 · 1509 阅读 · 0 评论 -
android设备终端与蓝牙模块(HC-06)的通讯编程思路
private BluetoothAdapter mBtAdapter = BluetoothAdapter.getDefaultAdapter();蓝牙模块(HC-06)在这个项目中,手机端作为客户端,去连接到蓝牙模块上。而接受蓝牙模块发过来的信息的时候,是没有必要再创建服务器端的,我们只要一个不断监听对方消息的循环就行。 在socket.connect();原创 2013-12-15 17:08:26 · 15104 阅读 · 23 评论 -
设置android应用程序在移动终端设备上调试运行
一、将应用程序在移动终端设备上进行1、将移动终端(这里为平板)设置为调试模式设置--->系统--->开发人员选项--->USB调试(勾选)2、将PC与平板用连接线进行连接,在PC上安装“豌豆荚”或者“91手机助手”或者“360手机助手”等手机助手软件。3、设置eclipse。window ---> show view ---> other... 然后选择Devices,点击O原创 2013-12-18 14:48:38 · 6004 阅读 · 0 评论