-
baofengyingyin
说明: A UI project source code that imitates storm video and audio. The imitated interface includes menu pages, home pages, classification pages, etc. The local analog data used for all data in the project. The imitated degree will be problematic in layout and display on high-resolution devices. The resolution of 480 x 800 should be just right.
- 2020-06-15 22:40:02下载
- 积分:1
-
最简单的计算器
很好很简单的安卓计算器源码,完整源码很好很简单的安卓计算器源码,完整源码很好很简单的安卓计算器源码,完整源码很好很简单的安卓计算器源码,完整源码很好很简单的安卓计算器源码,完整源码很好很简单的安卓计算器源码,完整源码
- 2022-05-16 17:32:31下载
- 积分:1
-
学习
学习
- 2013-09-02下载
- 积分:1
-
android转盘抽奖实例
android转盘抽奖实例
- 2020-10-22 15:17:23下载
- 积分:1
-
bapability
对LTE的整个复用方式进行了系统的仿真,是很好的学习程序()
- 2018-06-08 15:59:29下载
- 积分:1
-
android 视频录制与播放 实例源码下载
android 视频录制与播放 实例源码下载
- 2014-08-09下载
- 积分: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
-
Android60个开源项目工程代码
资源描述多种基础的功能和界面的开源的Android项目,运用到了基本的layout的设计还有一些常见的功能的开发等等。的确为一项能够学习和借鉴的好资料。
- 2023-02-06 20:25:07下载
- 积分:1
-
skqxg
说明: 射孔取芯工专业技能培训系统,用于射孔取芯工的考试,日常测试学习等,学校与石油公司签订的项目.(Professional skill training system for perforating coring workers,It is used for the examination, daily test and study of perforator and corer)
- 2020-07-31 09:35:57下载
- 积分:1
-
Android ImageButton 响应式变化的图形按钮
Android ImageButton用图形制作的按钮,把按钮的外形用一个图片来代替,不过本实例中的按钮用了两张图片,分别替换到按钮的两个状态、悬停和单击,单击按钮时候,按钮的图像发生变化,与用户的操作形成了很强烈的互动效果。
- 2023-08-28 01:20:03下载
- 积分:1