问题:
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" >
android:layout_width="match_parent"
androi...
分类:
其他好文 时间:
2014-06-19 09:36:53
阅读次数:
199
Android SDK Manager 消除SDK更新时的“https://dl-ssl.google.com refused”错误消除SDK更新时,有可能会出现这样的错误:Download interrupted: hostname in certificate didn't match: !=....
分类:
移动开发 时间:
2014-06-18 13:36:14
阅读次数:
249
如题,在android studio中调用this.toString时,提示的错误信息是ambiguous method call. both get class () in object and get class () in object match主要是编译器不清楚getclass是使用的sd...
分类:
移动开发 时间:
2014-06-17 13:39:04
阅读次数:
227
可以用宏表函数GET.DOCUMENT(),得到当前页(垂直方向分页):
1、定义两个名称:
(1)Page,引用位置:=IF(ISNA(MATCH(ROW(),GET.DOCUMENT(64))),1,MATCH(ROW(),GET.DOCUMENT(64))+1);
(2)TotalPage,引用位置:=GET.DOCUMENT(50);
2、在需要显示结果的单元格中输入公式:
="...
分类:
其他好文 时间:
2014-06-15 19:23:37
阅读次数:
208
java.lang.VerifyError:Stack map does not match the one at exception handler 385 in method ... at offset 377
我使用的 jar包( 下面是认为跟这个问题有关系的jar包)如下:
antrl-3.3-complete.jar
cglib-2.2.jar
cglib-nodep-2.2.2...
分类:
编程语言 时间:
2014-06-15 16:56:08
阅读次数:
476
【Control Flow】1、for loop中的元素可以省略: 2、for initializer中的变量只能在循环内使用。3、if、else if、else的用法: 最后一个else可选。4、switch用法: 5、range match: 6、tuple作为case: 7、va...
分类:
其他好文 时间:
2014-06-15 14:07:20
阅读次数:
283
概述:本文试图分析理解view 的measure 的过程,在分析过程中重点分析了LayoutParams 中MATCH_PARENT和MATCH_PARENT 的对应关系;onMeasure 默认值的计算过程;解释了onMeasure 接口中的注释中的问题,并提出一个问题:ViewRootImpl 是怎么创建的? 留作下篇引子。最后,讨论如何重写onMeasure()方法。
LayoutPara...
分类:
其他好文 时间:
2014-06-15 09:58:12
阅读次数:
440
http://ruby-doc.org/core-2.1.2/Regexp.htmlRegexpARegexpholds a regular expression, used to match a pattern against strings. Regexps are created using ...
分类:
其他好文 时间:
2014-06-14 21:17:33
阅读次数:
304
1 // Xml 转 数组, 包括根键,忽略空元素和属性,尚有重大错误 2 function
xml_to_array( $xml ) 3 { 4 $reg = "/]*?>([\\x00-\\xFF]*?)/"; 5
if(preg_match_all($reg, $xml, $...
分类:
Web程序 时间:
2014-06-12 13:16:05
阅读次数:
260