-
hal 串口通信 示例代码
hal 串口通信 示例代码
- 2015-06-11下载
- 积分:1
-
视频播放支持M3U8
很简单的播放器,很适合开发者学习,主要的控件是SurfaceView,用的是MediaPlayer来构建,可以支持M3U8视频播放(亲测)。所以有需求的小伙伴可以参考一下
- 2023-04-11 04:00:04下载
- 积分:1
-
android音频降噪webrtc
- 2022-02-02 18:23:13下载
- 积分:1
-
3DCubeView
该程序实现了图形切换立体效果,并可以任意设定图片内容。(Graphics switching stereo effect)
- 2011-10-24 11:41:59下载
- 积分:1
-
Android网络课表的获取
本程序来自课程实践从青果服务器获取网络课表;
本程序可以在Android studio 上运行,SDK为4.2.2
- 2023-04-26 22:25:04下载
- 积分:1
-
Android抽奖转盘
项目是安卓抽奖转盘的实现
- 2013-08-05下载
- 积分:1
-
android-video
比较实用的在Android实时采集视频,并在PC上显示出采集到的视频的程序,包括PC端和Android端程序,基于Android 1.5
在HTC G3上测试通过。-Android more practical in real-time video capture and
display the PC to the video capture process, including the PC-side
program and Android, HTC G3 based on the Android 1.5 in the test. 源代码AndroidVideo.classpath
...................project
..................AndroidManifest.xml
..................inAndroidVideo.apk
.....................classes.dex
......................omsunshineAndroidVideo$Kit.class
................................AndroidVideo.class
................................R$attr.class
................................R$drawable.class
................................R$id.class
................................R$layout.class
............
- 2022-10-04 06:05:03下载
- 积分:1
-
闹钟实现
闹钟实现
- 2021-02-20 10:39:43下载
- 积分:1
-
java实现文件分割与合并 类示例源码
java实现文件分割与合并 类示例源码
- 2015-01-14下载
- 积分: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