-
红外扫描源码
public class MyBroadcastReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
Bundle bundle = intent.getExtras();
String extra = (String) bundle.get("F2key");
if (action.equals("com.jb.action.F2key")) {
Log.v("onReceive"
- 2022-03-11 06:44:37下载
- 积分:1
-
安卓通讯录
安卓通讯录源码,用到的包都存放好了,不需要重新打包.drawable-hdpi,drawable-ldpi,drawable-mdpi,drawable-xhdpi,drawable-xxhdpi,layout,menu,values…分类很清楚
- 2022-10-16 12:55:03下载
- 积分:1
-
InternalFileDemo
android开发文件读写实例demo,用户可在文本框输入文字写入文件,可用追加模式(A Demo of File read/write for Android development.)
- 2013-08-16 14:16:28下载
- 积分:1
-
Android源码
C#+Android开发的Android系统源码
- 2023-05-13 23:25:03下载
- 积分:1
-
简单的导航滑条
这一项目将显示在 android 的一些执行导航的滑条里。这为更好地理解提供意见。您将需要最新的 android 版本 (例如 3.0 或更高),如果你只是需要更低的版本包括 appcompat 07 中的。
- 2022-10-25 19:15:03下载
- 积分:1
-
Android 超高仿微信图片选择器
模仿Android手机微信选择图片,有缓存的选择加载图片到内存中去,然后再所对应的的首界面进行显示,代码可以直接使用,没有任何的问题。
- 2023-01-31 08:10:03下载
- 积分: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-02-26 21:18:37下载
- 积分:1
-
基于stm32f103c8t6 spi-flash
基于stm32f103c8t6 spi-flash
- 2021-05-06下载
- 积分:1
-
CreatePulleyJoint
滑轮关节,Android开发精典案例源码,很好的参考资料。(The pulley joint, Android development of classical case of source code, a good reference.)
- 2013-11-12 00:14:46下载
- 积分:1