摘要:
转载留用http://www.trinea.cn/android/layout-performance/ 阅读全文
摘要:
http://ingramchen.io/blog/2014/09/prevention-of-android-dex-64k-method-size-limit.html 阅读全文
摘要:
long startTime = System.currentTimeMillis(); // 开始下载时获取开始时间long curTime = System.currentTimeMillis();int usedTime = (int) ((curTime-startTime)/1000);i... 阅读全文
摘要:
情况一:混淆不同的函数aTest、bTest-keep class com.zony.Test { void aTest(byte[], int, int); void bTest(String, int, int);}情况二:混淆相同的函数aTest(aTest参数不同)错误混淆方式:... 阅读全文
摘要:
1. Parcelable接口Interface for classes whose instances can be written to and restored from a Parcel。 Classes implementing the Parcelable interface must ... 阅读全文
摘要:
解决方法如下:1、增加用户组usbfssudo groupadd usbfs2、查看usbfs用户组的gidcat /etc/group | grep usbfsusbfs:x:1002:3、把当前用户增加到usbfs组sudo gedit /etc/group把usbfs:x:1002:修改为us... 阅读全文
摘要:
1、选中标题后,高亮标题@Override public void onPageSelected(int position) { setSelectTextColor(position); if (delegatePageListener !... 阅读全文
摘要:
重写ListView、GridView即可:public class MyListView extends ListView { public MyListView(Context context) { // TODO Auto-generated method stub ... 阅读全文
摘要:
一、监听home键盘,Android Home键系统负责监听,捕获后系统自动处理。有时候,我们需要监听home键处理自己的逻辑,监听方法如下: /** * 监听home键广播 */ private final static BroadcastReceiver homeLi... 阅读全文