-
安卓无线控温 实例源码(控制温度)
通过手机app遥控下位机进行温度的控制,手机可以读取温度值等的数据,并且可以自动发送指令,到达设定的温度后,手机可通过响铃或震动来提示用户。
- 2017-02-08下载
- 积分:1
-
happy_book
可以读取txt文件,并且有很好用户界面的Android应用程序(You can read the txt file, and has a good user interface for Android applications)
- 2013-04-17 16:42:16下载
- 积分:1
-
好看的加载按钮界面
好看的加载按钮界面
- 2016-05-31下载
- 积分:1
-
用jfreechart实现的动态曲线
用jfreechart实现动态曲线,有系统产生随机数,然后画出曲线,并能实时显示曲线
- 2019-07-19下载
- 积分: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
-
AndroidWeatherForecast
这是一个在Eclipse上开发的Android小软件,可以用于初学者学习。(
ON划词翻译ON实时翻译
This is a development in Eclipse on the Android small software, and can be used for beginners to learn.
)
- 2015-01-15 08:15:24下载
- 积分:1
-
android h263硬编码rtp打包
说明:该android代码h263硬编码rtp打包发送服务器,pc端建立sdp文件用vlc播放1、服务器ip为192.168.1.62、android手机ip为192.168.1.17,在小米1s测试通过,像三星等手机不支持h263编码3、android端修改net.config包下的Config类的url4、pc端用已有的sdp文件播放,修改ip为手机ip
- 2015-05-19下载
- 积分:1
-
stsndardrange
用于测试Modbus通讯,工业软件的必备()
- 2018-01-13 16:22:10下载
- 积分:1
-
android 异步下载示例源码
其中还包含了各种布局示例 以及
- 2014-04-13下载
- 积分:1
-
基于UDP的手机与电脑互相通信实例
说明: 本例为java代码,在android系统实现手机与电脑通过udp方式通讯(This example is java code, in Android system to achieve mobile phone and computer through UDP communication)
- 2020-06-25 12:20:02下载
- 积分:1