Topwo项目
首页
博客
项目
应用软件
快递柜项目
应用软件
2025-04-04
**快递柜项目知识点** [TOC] ## 1. 异常捕捉 ## 2. 运行日志 ## 3. 适配 ### 3.1 me.jessyan:autosize ## 4. 分屏 ### 4.1 android.app.Presentation ## 5. USB摄像头 ### 5.1 com.serenegiant.uvccamera #### 5.1.1 USBMonitor注册监听 #### 5.1.2 有usb插上,就请求usb设备权限 #### 5.1.3 请求权限通过后,发起连接 #### 5.1.4 连上后,创建UVCCamera,把连接对象传给UVCCamera #### 5.1.5 创建一个SurfaceView,注册回调,传给UVCCamera预览用,设置预览参数 #### 5.1.6 在SurfaceView销毁的时候,UVCCamera停止预览、关闭、销毁 ## 6. 串口通信 ## 7. 获取SIM卡号 ## 8. 全屏禁用上拉下拉 ## 9. 开机自启动 ### 9.1 监听开机广播 ```xml <receiver android:name="com.hf.fz.receiver.BootAndPackageReceiver"> <intent-filter> <action android:name="android.intent.action.BOOT_COMPLETED"/> </intent-filter> <intent-filter> <action android:name="android.intent.action.PACKAGE_INSTALL"/> <action android:name="android.intent.action.PACKAGE_ADDED"/> <action android:name="android.intent.action.PACKAGE_REMOVED"/> <action android:name="android.intent.action.PACKAGE_REPLACED"/> <data android:scheme="package"/> </intent-filter> </receiver> ``` ## 10. 作为桌面应用 ### 10.1 配置AndroidManifest.xml ```xml <intent-filter> <category android:name="android.intent.category.HOME"/> </intent-filter> ``` ## 11. 控制热点开关 ### 11.1 [Android打开wifi热点](http://blog.topwo.com/blog/article/183)
阅读原文>>
1
文章推荐
快递柜项目
2025-04-04