-
android 个人通讯录示例源码(入门级)
实验是做一个个人通讯录,实现有一个登陆界面,可修改登陆密码,实现手机通讯录的基本功能,包括添加手机联系人,查询手机联系人,删除手机联系人,导入联系人,以及拨打电话、发送短信、发送邮件等功能。以java语言为主体,xml布局,结合Android移动开发平台等实现对安卓手机通讯录的基本操作,做到能够完好的运行。
- 2019-04-18下载
- 积分:1
-
健康生活,养身助手
完成了基本的界面,包括主界面,图形化界面等。页面比较人性化,操作简单实用。整体框架实用滑动窗口的设计理念,利用最小的空间实现极大地内容呈现。
- 2022-10-11 04:15:03下载
- 积分:1
-
android speex ogg封装
实现了语音的录制和压缩,通过speex进行编码,用ogg封装,效果不错,问价体积小
- 2022-06-17 06:39:51下载
- 积分:1
-
channel
COST207信道模型,对于信道仿真的时候非常有用(COST207 channel model is useful for channel simulation)
- 2018-09-27 19:19:36下载
- 积分:1
-
BitmapChange
说明: 为图上添加灰度(彩色转换为黑白图像)、怀旧、冰冻等特殊效果(Add special effects such as gray scale (color to black and white image), nostalgia, freezing, etc. to the image)
- 2020-06-10 12:19:48下载
- 积分:1
-
浏览器
浏览器
- 2013-08-25下载
- 积分: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-under_1[1].5SDK_Compile_CH04
Android sdk 开发范例大全 第五章源码
- 2012-05-01 12:44:08下载
- 积分:1
-
mob 手机短信验证码例子源码下载
实现了 手机验证码以及读取手机通讯录功能
- 2015-04-25下载
- 积分:1
-
android课程随书代码
适合新手学习,有系统的说明注释,对androi d的讲解编程会有详细的把握,附件有整套代码,会对android有全面的了解,有一个体系的认识
- 2022-02-14 05:07:38下载
- 积分:1