ExpandableListView 实现分组购物车 Android
如标题所示,现在很多购物车都实现了分组功能,而android原生的ExpandableListView就能实现的这样的功能。因为源码已经上传就不贴代码出来了,直接上
标签: android
Android 数字动画 Android
Android 数字动画
/**
* 动画显示数字
* Created by fhp on 15/1/7.
*/
public class CountView extends NumberView{
//动画时长 ms
int duration = 1500;
float number;
public
标签: android
android使用traceView进行性能测试 Android
在android开发中,经常会需要优化apk的性能,然而那些方法是比较耗费性能的,哪些方法又是比较占用内存的,我们很难得知,好在google为我们提供了一个工具,traceView,该工具在sdk的tools文件夹里边,只要配置了环境变量,...
标签: android
Android中几种字符串拼接的效率比较 Android
废话不多说,直接上代码 long n = 10000; long start1 = System.currentTimeMillis(); String s1 = new String(hello); for (long i = 0; i ...
标签: android
狂刷Android范例之2:剪贴板范例 Android
狂刷Android范例之2:剪贴板范例ClipboardSample
说明
狂刷Android范例系列文章开张了。每篇学习一个Android范例,将一个范例单独生成一个可运行的app,并对
标签: android
关于 update ADT plug-in 的错误 Android
关于 update ADT plug-in 的错误0Eclipse reports rendering library more recent than ADT plug-in.Please update ADT plug-inOn a new Android SDK installation,
标签: android
BluetoothChat之BluetoothChatService.java Android
参考:http://blog.csdn.net/zhanghua1121/article/details/9331373 BluetoothChatService.java public synchronized void start(...
标签: android
BluetoothChat之扫描设备DeviceListActivity.java Android
参考引用:http://blog.chinaunix.net/uid-7552018-id-173418.htmlhttp://blog.csdn.net/zhanghua1121/article/details/9331381DeviceListActivity.java 该类包含 UI 和操作的 Ac
标签: android
AndroidのListView包含CheckBox时滑动丢失选中状态的解决 Android
AndroidのListView包含CheckBox时滑动丢失选中状态的解决listview 中,如果有10项,其中手机屏幕显示1-6项,其余的7-10项在屏幕中不可见,得向下滚动后才
标签: android
android学习之---基本问题1 Android
android学习之---抽象类与接口类的区别 1),抽象类中可以有抽象方法和非抽象方法,其中,声明了方法而不去实现它的叫做抽象方法。如果一个类中包含至少一个抽象方法,那么这个类就叫抽象类(abstract )。 而如果一个类中都是抽象方法...
标签: android