AppWidgetProvider使用介绍 Android
一 介绍 AppWidgetProvider是android中提供的用于实现桌面小工具的类,其本质是一个广播,即BroadcastReceiver。下面是类的继承关系。 所以,在实际的使用中,把AppWidgetProvider当成一个Br...
标签: android
Android开发秘籍学习笔记(三) Android
关于线程间的消息机制:Handler
Handler的作用
在多个线程(比如一个主应用程序线程)同时运行之后,它们之间就需要一种相互通信的途径,而Handler
标签: android
Android 侧滑缩放菜单(HorizontalScrollView简单实现) Android
参考鸿洋博客的一篇文章:
http://blog.csdn.net/lmj623565791/article/details/39257409
最终效果图
一、菜单布局
采用列表视图ListView
left_menu.xml
<ListVi
标签: android
Android Adapter 源码笔记(3) Android
SimpleAdapter extends BaseAdapter implements Filterable本质上和ArrayAdapter一样,只不过Data的数据结构更为复杂,支持的View layout也更为复杂.
为了支持携带多childView的
标签: android
APK文件使用ApkTool解包反编译和重新打包及签名 Android
原文:APK文件使用ApkTool解包反编译和重新打包及签名地址:http://429006.com/article/technology/3420.htm1. 准备工作:配置JAVA环境,到http://www.java.
标签: android
Android platform build guide for Exynos-4412(odroid -X/X2/U2/U3/Q2/Q) Android
Android platform build guide for Exynos-4412(odroid -X/X2/U2/U3/Q2/Q)
How to download and build the Android source code
https://github.com/hardkernel/android
android-4.1.2
$ repo init -u htt
标签: android
android broadcast Android
转载请注明出处:http://blog.csdn.net/zhouli_csdn/article/details/45645743广播是一种广泛运用的在应用程序之间传输信息的机制 。而 BroadcastReceiver 是对发送出
标签: android
Android按键操作 Android
Android按键操作——可识别按键动作(按下、松开、点击)
参考文章:http://blog.chinaunix.net/uid-26993600-id-3304530.html
下面介绍一下操作步骤:
1、编写button
标签: android
使用chrome调试android前端页面 Android
移动端开发时,我们常使用chrome自带的模拟器,模拟各种手机设备。 但模拟毕竟是模拟,当开发完毕,使用真机访问页面出现问题时如何调试呢? 下面介绍一种针对android机的调试方法 1. 在pc和android手机上都安装最新版本的chr...
标签: android
The method setClass(Context, Class<?>) in the type Intent is not applicable for the问题 Android
intent.setClass(com.lianxin.RightFragment.this, views.MainActivity.class); 这句改为:intent.setClass(getActivity(), MainActivity.class);
标签: android