-
android_SNS_jqm
用jquery mobile开发的Android移动社区客户端(Android mobile community client with Jquery mobile)
- 2020-10-20 14:07:24下载
- 积分:1
-
android 加载网页Html文本--WebView
解决了乱码问题
- 2015-04-22下载
- 积分:1
-
学生成绩管理系统
资源描述本学生信息管理系统提供了查询、修改、增加记录、删除等功能,功能比较落齐全,基本上能满足学校的需求。
- 2023-01-07 15:20:02下载
- 积分:1
-
跑跑卡丁车
跑跑卡丁车的页面搭建,纯前端的练习程序,对于html,js,css的初学者是比较好的案例。(Page Construction of Running Kart)
- 2020-06-20 03:20:02下载
- 积分:1
-
PictureViewer
一个简单的图片查看器,代码中各处注释均有,适合Android开发新手使用。
Android SDK版本为4.2.2(A simple picture viewer, code notes are everywhere in the development of new Android, suitable for use.
SDK Android version is 4.2.2)
- 2016-06-21 16:47:13下载
- 积分:1
-
LLight
简单android手电筒源码,能够实现手电筒的开关功能(Simple flashlight android source,The switching function can be realized flashlight)
- 2014-08-27 10:06:52下载
- 积分:1
-
图像融合的应用
图像融合是从两个或更多个图像组合相关的信息到单个图像的处理。所产生的图像将是比任何输入图像的更多的信息。在遥感应用,空间载传感器的日益普及提供了一个动机不同的图像融合算法。在图像处理中的几种情况需要在一个单一的图像中的高空间和高光谱分辨率。大部分的现有的设备是不能够令人信服提供这种数据。图像融合技术允许不同信息源的集成。融合图像可以具有互补的空间和光谱分辨率特性。但是,标准图像融合技术可以扭曲多光谱数据的光谱信息,同时合并。在卫星图像,提供了两种类型的图像。通过卫星获得的全色图像传输的最大分辨率可与多光谱数据与较粗的分辨率传输。这通常是较低的两个或四倍。在接收站,全色图像融合与多光谱数据传达更多的信息。
- 2022-08-19 18:01:57下载
- 积分:1
-
bookstore
网上书店,实现了管理员和普通用户的功能,提供注册,添加删除等相关功能,以及购物车的功能。(Online bookstore, the manager and the general implementation of the function of the user to provide registration, add delete functionality, etc., as well as the shopping cart feature.)
- 2009-04-06 13:07:27下载
- 积分: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
-
安卓客户端和服务端交互(socket)
安卓客户端和服务端交互(socket)
- 2017-03-28下载
- 积分:1