1.What exactly does 'agile' mean? 1)Agile software development does not means a invariable mode of progeramming, rather, it plays a directing and gui....
分类:
其他好文 时间:
2014-10-16 01:45:41
阅读次数:
180
Fragment在实际项目开发中使用的越来越多,现在简单介绍一下
布局文件:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_par...
分类:
移动开发 时间:
2014-10-15 22:54:41
阅读次数:
265
一、关于布局适配1、不要使用绝对布局2、尽量使用match_parent 而不是fill_parent 。3、能够使用权重的地方尽量使用权重(android:layout_weight)4、如果是纯色背景,尽量使用android的shape 自定义。5、如果需要在特定分辨率下适配,可以在res目录上...
分类:
移动开发 时间:
2014-10-15 19:46:11
阅读次数:
253
问题描述:今天数据库查询时遇到问题,具体情形如下截图所示:问题分析:看错误明显是TNS监听有问题,要么配置错了,要么数据库没起来。但是当前数据库起来了,也能正常连接使用,因此考虑被查询对象可能是一个db_link,具体的是那个连接有问题。问题定位及解决:--查询数据对象,从而得到它是一个synony...
分类:
其他好文 时间:
2014-10-15 19:19:21
阅读次数:
172
http://acm.nyist.net/JudgeOnline/problem.php?pid=15
dp[i][j]表示从i到j至少需要添加多少个括号才能满足匹配条件.
初始化:
if(i == j)
dp[i][j] = 1;
else
dp[i][j] = INF;
状态转移:
当i
if(match(str[i], str[j])) dp[i]...
分类:
其他好文 时间:
2014-10-15 18:44:31
阅读次数:
259
最近在工作中遇到了这样一个问题,使用一个GridView展示数据,item中只是一个TextView,但是里面显示的文字多少不固定多少,必须全部展示出来.
遇到的问题:
1.把item中的宽和高设置match_parent,还是设置成wrap_content,当内容过多的时候,会覆盖下一行的显示的内容.
2.没有一个属性可以给GridView设置行高,那么高度就不能控制.
遇到的问题展...
分类:
其他好文 时间:
2014-10-15 16:12:01
阅读次数:
292
#匹配最末两位为数字$x=New-Object regex ('\d{2}','RightToLeft')#$x.RightToLeft$x.Match('abcd22')结果:
分类:
其他好文 时间:
2014-10-14 18:49:09
阅读次数:
249
表格布局最主要的三个属性:
XML代码实例:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orie...
分类:
移动开发 时间:
2014-10-14 18:38:49
阅读次数:
209
Original link:Where does Windows store MSI files for uninstallation?Following content are only used for knowledge sharing. Please reprint from the ori...
Android4.4,SecurityException
分类:
移动开发 时间:
2014-10-14 14:30:29
阅读次数:
514