-
中文語言siri源碼(Andriod)
此為使用於Andriod的中中文語言siri源碼(Andriod),
其源碼為JAVA,使用於Andriod環境,
功能為和iPhone之SIRI語音類似,
可應用於需語音辨識之應用。
- 2022-03-25 11:00:24下载
- 积分:1
-
ProgressBar
说明: 介绍了Google Android平台下面的各种进度条如何使用(Google Android platform, introduced the following article how to use a variety of progress)
- 2009-08-01 01:19:34下载
- 积分:1
-
完整的背单词项目源码,支持真人语音发音库
一款android上的背单词软件,支持真人发音与TTS语音引擎,自带多个词库,也可以自定义词库。有独特的听写及复读功能。
- 2022-11-04 09:35:03下载
- 积分:1
-
Android SeekerBar 滑块的用法举例
本源码主要演示在android UI界面设计时,使用SeekerBar控件制作一个滑块,当然使用SeekerBar也可快速实现一个进度条,本实例是制作的滑块,同样是很实用的功能。拖动滑块可改变图片的透明度。类似于Andorid智能机屏幕下拉中的亮度调整那样,当拖动滑块向指定方向移动时,改变指定对象的值。
- 2022-08-20 09:03:35下载
- 积分:1
-
Android 图片缩放 图片拖拽 自动居中实例
Android 实现的图片缩放 图片拖拽,限制最大最小缩放比例,自动 横向、纵向居中,图片小于屏幕大小,则居中显示。大于屏幕,上方留空则往上移,下方留空则往下移,最小缩放比例为1%,最大为100%。
在屏幕上按住图片任意方向拖动,松开后,图片会智能判断,并自动复位。
- 2022-01-21 01:16:01下载
- 积分: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
-
二维码扫描
有空的时候,自己封装的很好用,不要忘了加权限,不然会闪退
- 2022-04-29 05:26:31下载
- 积分:1
-
安卓记事本app
课设APP,简单的记事本,可以分享,有实时更新的功能,界面还是挺好看的,平时记事可用,方便简洁。大家可以下载来用。
- 2022-02-04 18:35:47下载
- 积分:1
-
通过百度定位系统实现的安卓APP
android studio平台的 可以运行 可以做到用gps, wifi同时定位 精度比较高
- 2022-08-15 02:53:31下载
- 积分:1
-
AndroidPdf
此JAVA文件内容为android系统上可以使用查看PDF文件格式的软件源代码(The contents of the JAVA file is used to view the PDF file format of the software source code to Android system)
- 2014-06-26 16:56:44下载
- 积分:1