-
Android城市天气预报-获取天气信息
Android适时获取天气信息,更新显示实时天气信息,更新显示天气预报,获取天气信息,通过网络获取数据,传递给XMLReader解析。得到一个封装打包的字符串,包括除icno外的所有东西,可以预报后四天的天气信息:
private String condition; // 多云
private String temp_celcius;// 摄氏温度
private String temp_fahrenheit;// 华氏温度
private String humidity; // 湿度:58%
private String wind_condition;// 风向...
private String icon;// 图标
得到最后一个预报天气,这里我们每次添加一个数据都是在最后,所以得到最后一个
- 2022-02-13 12:25:55下载
- 积分:1
-
摇摇录音笔
这是一个通过摇晃传感器 来录音的小程序。初学者很适合,已经在本人的手机上通过调试。已经成功。 希望为大家刚刚接触安卓开发带来益处。
- 2022-03-29 01:19:17下载
- 积分: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
-
一个SQLITE的例子,注册登陆 增加删改
资源描述登陆 注册 增删改 基于sqlite
- 2022-08-17 05:54:37下载
- 积分:1
-
MusicPlayer音乐播放器
说明: 手机音乐播放器是一种在手机上用于播放各种音乐文件的多媒体播放软件。它涵盖了各种音乐格式的播放工具,比如:手机自带播放器、MP3播放器,WMA播放器,MP4播放器等,目前手机音乐播放器主要支持的格式有MP3、WMA、AAC、AAC+、MID、AMR、OGG、MP4、FLAC等,它们在手机中运行,不仅界面美观,而且操作简单,带你进入一个完美的音乐空间。(A mobile music player is a multimedia playing software for playing various music files on a mobile phone. It covers a variety of music format playback tools, such as: mobile phone player, MP3 player, WMA player, MP4 player, etc. Currently mobile phone music player mainly supports MP3, WMA, AAC, AAC+, MID, AMR, OGG, MP4, FLAC, etc., they run in the mobile phone, not only the interface is beautiful, but also easy to operate, bringing you into a perfect music space.)
- 2020-06-18 13:20:01下载
- 积分:1
-
seekbar_Android开发实例
代码实现了的进度条1进度条如线状显示,带有少许发散效果2拖拽按钮用圆显示,采用发散效果。(类似太阳的效果) 这个效果主要有这样几个难点:进度条的高度会随着seekbar的宽度变化,然而seekbar宽度过小又会遮罩住部分拖拽按钮;拖拽按钮使用shape方式生产,而非图像~~~~ 折腾折腾...
- 2022-07-04 02:16:20下载
- 积分:1
-
Android ImageView XML属性
ImageView
类描述:显示任意图像,例如图标。ImageView可以加载任意来源的图片(如资源或图片库),需要计算图片的尺寸,以便它可以在其他布局中使用,并提供例如缩放和着色(渲染)各种显示选项
- 2022-03-15 15:33:32下载
- 积分:1
-
The-Android-100-problem-sets
Android&架構&敏捷_高煥堂100問題集_Part_A_ok
进程,线程,JNI,IPC基础(The Android& Architecture & agile _ Gao Huantang 100 problem sets _Part_A_ok)
- 2014-07-02 16:22:23下载
- 积分:1
-
android视频聊天源码下载(wifi)
支持 wifi下 视频 语音聊天
- 2015-03-10下载
- 积分:1
-
android OAuth认证、使用网易微博开放平台实现聊天功能源码
OAuth认证、使用网易微博开放平台实现聊天功能
- 2014-09-22下载
- 积分:1