今天捣腾ImageView的时候发现padding属性竟然不起作用,折腾一番后才知道原来跟我设置scaletype为centerCrop有关,要想两者同时作用,只需加上android:cropToPadding="true"即可。如下所示:
<ImageView
android:layout_width="match_parent"
...
分类:
移动开发 时间:
2014-09-11 17:22:42
阅读次数:
305
编程语言中的操作从最初的只有+, -, *, /, for 到后来的+=, -+, *=, /=, ++, --,?:再到最新的??, foreach in, Range, Match等的确实实在在地让我们Coding的更加简洁了。但是SQL语言从最初的只有SELECT, UPDATE, DELET...
分类:
编程语言 时间:
2014-09-11 10:49:01
阅读次数:
188
题目参考:http://blog.csdn.net/xiefubao/article/details/24934617题意:给两个字符串,求一个最短的子串。使得这个子串在两个字符串中出现的次数都等于1.出现的定义为:可以重叠的出现。解法:后缀数组的应用。从小枚举长度。如果一个长度len合法的话:则一...
分类:
其他好文 时间:
2014-09-11 09:35:01
阅读次数:
250
首先需要一个Layout界面:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="ver...
分类:
移动开发 时间:
2014-09-10 17:50:10
阅读次数:
197
通过dsoframer实现读取excel文件报错:System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Runtime.In...
分类:
其他好文 时间:
2014-09-10 17:39:00
阅读次数:
2118
[persistence/sql-map-.xml]; nested exception is java.io.FileNotFoundException: class path resource [sql-map-config-2.dtd] cannot be opened because it does not exist at org.springframework.beans.fac...
分类:
数据库 时间:
2014-09-10 12:49:40
阅读次数:
402
我是一个警告,xml代码是:改成就好了。为什么,因为新版本SDK要求填写属性lableFor,类似于填写一个ID来绑定这个控件,第一句已经添加了一个id,直接用那个就行了This text field does not specify an inputType or a hint1 这样写的时候突....
分类:
其他好文 时间:
2014-09-10 02:41:09
阅读次数:
137
文档描述不够详细,有人测试结果如下:init does not cause layoutSubviews to be called (duh)addSubview causes layoutSubviews to be called on the view being added, the view...
分类:
其他好文 时间:
2014-09-09 22:57:19
阅读次数:
305
Q:In my iPhone application built with Xcode 5 for iOS 7 I set UIViewControllerBasedStatusBarAppearance=YES in info.plist, and in my ViewController I h...
分类:
移动开发 时间:
2014-09-09 17:55:59
阅读次数:
209
大意:有n个男孩n个女孩,告诉你每个女孩喜欢哪些男孩,又告诉你女孩之间的存在一些朋友关系一个女孩可以和她喜欢的男孩结婚也可以和她朋友喜欢的男孩结婚, 并且朋友关系可以传递Once every girl finds their boyfriends they will start a new roun...
分类:
其他好文 时间:
2014-09-09 17:51:29
阅读次数:
187