-
基于stm32的室内环境监测系统设计及实现
用STM32f103zet6单片机做的室内环境监测系统,用到了LCD显示屏,光敏传感器,火焰传感器,红外遥控,烟雾传感器,高感度声音传感器,DHT11温湿度传感器等多个传感器模块综合,
- 2020-05-26下载
- 积分:1
-
Media_Setting
基于全志A10 android4.0平台,开发的GPIO控制程序,通过UI界面选择不同状态下GPIO口输出不同的电平状态,来实现由高低电平来控制外部设备;本例程主要实现5个IO口控制Audio和vedio的不同格式输出(Based on Allwinner A10 android4.0 platform, the development of the GPIO control procedures, through the UI interface to select a different state, a different GPIO port output level state, to achieve the high and low to control external devices This course mainly to achieve five IO port control Audio and vedio output different formats)
- 2013-10-08 21:33:56下载
- 积分:1
-
android仿IOS弹出提示,选择日期,地区,三级联动
android仿IOS弹出提示,选择日期,地区,三级联动
- 2022-11-28 18:50:03下载
- 积分:1
-
Android UI
说明: I will share with you some tips for UI design in Android
- 2020-04-26 09:55:34下载
- 积分:1
-
android
android开发相关文档,android学习基础文档、界面切换效果总结(the book of android)
- 2013-09-09 08:37:24下载
- 积分:1
-
android联系人带字母检索源码
android联系人带字母检索源码/** * 联系人列表适配器。 * * @author guolin */public class ContactAdapter extends ArrayAdapter { /** * 需要渲染的item布局文件 */ private int resource; /** * 字母表分组工具 */ private SectionIndexer mIndexer; public ContactAdapter(Context context, int textViewResourceId, List objects) { super(context, textViewResourceId, objects); resource = textViewResourceId; } @Override public View getView(int position, View convertView, ViewGroup parent) { Contact contact = getItem(position); LinearLayout layout = null; if (convertView == null) { layout = (LinearLayout) LayoutInflater.from(getContext()).inflate(resource, null); } else { layout = (LinearLayout) convertView; } TextView name = (TextView) layout.findViewById(R.id.name); LinearLayout sortKeyLayout = (LinearLayout) layout.findViewById(R.id.sort_key_layout); TextView sortKey = (TextView) layout.findViewById(R.id.sort_key); name.setText(contact.getName()); int section = mIndexer.getSectionForPosition(position); if (position == mIndexer.getPositionForSection(section)) { sortKey.setText(contact.getSortKey()); sortKeyLayout.setVisibility(View.VISIBLE); } else { sortKeyLayout.setVisibility(View.GONE); } return layout; } /** * 给当前适配器传入一个分组工具。 * * @param indexer */ public void setIndexer(SectionIndexer indexer) { mIndexer = indexer; }}
- 2014-04-13下载
- 积分:1
-
android 记事本 例子源码下载(初级版本)
将数据写入文件了
- 2014-09-15下载
- 积分:1
-
人脸检测
这个项目是关于在 android 上的人脸检测。它确定您选择从库的掉线都检测到人脸的照片上的面孔写入后脸上被检测到。
- 2023-07-06 15:10:03下载
- 积分:1
-
闹钟实现
闹钟实现
- 2021-02-20 10:39:43下载
- 积分:1
-
高仿微信底部导航
思路比较简单:
1、首先在主布局中加入FragmentLayout
2、然后在Java代码中监听底部的按钮,当点击时,只需让FragmentLayout加载相应的Fragment即可
- 2022-08-05 15:41:56下载
- 积分:1