-
busybox
busybox 按照在android模拟器上可以查看模拟器的ip地址(busybox in accordance with the android emulator to see the ip address of the simulator)
- 2011-06-10 11:05:15下载
- 积分:1
-
环境监测的手机客户端
环境监测系统的手机客户端,在环境监测统中能够监测到环境的温度湿度的参数,并且当超过一定的值时会有警报的提示环境超过一定的范围。并发出警报。
- 2022-01-28 08:45:15下载
- 积分: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
-
BLE4.0聊天实例
BLE4.0聊天实例
- 2015-05-19下载
- 积分:1
-
fetnelregarde
通信仿真 jakes改进模型的程序,仿真基本理论()
- 2018-07-09 05:02:37下载
- 积分:1
-
vlc编译第三方库
VLC的引用了很多开源的第三方库,均放到VLC目录下的contrib中(本来开始编译是2.1.x以上版本,以前或以后可能会变化),在Windows版本编译中,contrib文件夹中仅仅下载VLC官网上已经编译好的预编译包后解压到该目录下,要修改编译脚本(compile.sh和 contrib/src下的main.mak)为fetch所有第三方包中,下载后开始自动编译(由main.mak和contrib/src/***/rules.mak控制)。
- 2022-03-26 14:26:47下载
- 积分:1
-
仿照锤子便签的记事本
资源描述随便写的东西,只是为了赚CF币,他说我字数太少,好吧,里面东西挺简单的,只能给新手参考一下了
- 2022-12-31 16:05:06下载
- 积分:1
-
短信弹出开源
SMSPopup是一个拦截收到的短信并将其显示在一个弹出窗的Android应用,弹出窗显示短信的内容、发送者以及他们的联系人照片 (若果有的话)。弹出窗口有关闭 (关闭时将短信置为已读)、删除、回复按钮 (调用系统Intent)。后续版本中添加了内置提示系统,允许用户取消系统的提示系统而采用SMS Popup提供的。提示系统还提供了一些额外的配置选项,如自定义震动模式、LED颜色、及记住用户错过的短信等等。
- 2022-04-30 15:31:34下载
- 积分:1
-
CityWeather
安卓平台下的一个简单的城市天气预报小程序,可供学习安卓的朋友作参考!(Andrews platform under a simple weather forecasts for cities program available for Andrews friends and as a reference!)
- 2012-08-18 13:39:22下载
- 积分:1
-
这个是<android 开发入门>书中的helloworld代码,java环境,在eclipse环境下运行。...
这个是书中的helloworld代码,java环境,在eclipse环境下运行。-This is Book helloworld code, java environment, run under eclipse.
- 2023-03-17 03:30:04下载
- 积分:1