-
引导页和日历及GridView的拖动、仿qq侧滑菜单
模仿微信引导页,日历查看,GridView的拖动
- 2015-06-12下载
- 积分:1
-
SyncML协议的实现
它的一个Android应用程序同步联系人在客户端和服务器系统,不会干扰用户。
- 2022-03-18 20:52:26下载
- 积分:1
-
简易的安卓天气预报软件
简易的安卓天气预报软件,可以实现不同城市之间的切换,显示未来三天的天气情况。对于安卓初学者还是不错的学习资源。
- 2022-02-09 18:38:46下载
- 积分: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 工具类
android常用的一些工具类代码,比如:日志类,toast类,字符串处理类,数据库处理类
- 2023-05-26 16:05:03下载
- 积分:1
-
android 校园交易APP 源码下载
Android项目源码基于Material Desgin设计的校园交易APP,基于android studio开发的,仅供学习交流使用
- 2016-11-24下载
- 积分:1
-
Android 复制粘贴 直接可以用
此代码用于android开发者。具体实现了粘贴复制。没有任何bug。导入即可用。直接运行。
- 2022-01-22 17:36:37下载
- 积分:1
-
src
使用百度地图和定位SDK做的简单示例代码,鹰眼轨迹部分还没有完全完成,先上传这部分,由于文件过大,只上传src部分,百度SDK官网上均下载链接(Using Baidu Map and Location SDK to do a simple example code, the Eagle Eye Track part has not been fully completed, first upload this part, because the file is too large, only upload the SRC part, Baidu SDK official website are downloaded links.)
- 2020-06-21 14:20:02下载
- 积分:1
-
安卓整容问答社区源代码
一款安卓整容问答社区源代码,支持安卓2.3到4.0以上,客户端功能具备:
1,注册登录,微博登录;
2,微博微信分享;
3,仿微信提问,发送文字,表情;
4,瀑布流显示各种问题,帖子;
5,最热提问,最热问答;
6,可私信提问者;
- 2023-06-14 16:27:29下载
- 积分:1
-
一个web浏览器的实例
资源描述一个手机web浏览的实例,自己做过修改,第一次做这方面的东西,分享出来,高手勿喷
- 2023-09-09 04:10:17下载
- 积分:1