Title here Some content转自:Set div to fill in the rest of the height dynamically?
分类:
Web程序 时间:
2014-10-19 22:45:56
阅读次数:
583
android:gravity:设置textview中的字体居中显示
android:id="@+id/tv_audit_title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:backgr...
分类:
移动开发 时间:
2014-10-17 15:35:09
阅读次数:
243
效果:
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:shrinkColumns="0" >
android:text="审核类型:"
...
分类:
其他好文 时间:
2014-10-17 12:01:16
阅读次数:
117
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_alignParentBottom="true"
android:layout_width="fill_parent"
android:...
分类:
移动开发 时间:
2014-10-16 23:27:53
阅读次数:
201
一、关于布局适配1、不要使用绝对布局2、尽量使用match_parent 而不是fill_parent 。3、能够使用权重的地方尽量使用权重(android:layout_weight)4、如果是纯色背景,尽量使用android的shape 自定义。5、如果需要在特定分辨率下适配,可以在res目录上...
分类:
移动开发 时间:
2014-10-15 19:46:11
阅读次数:
253
通过设置Image控件Stretch属性的值可以控制图片的显示形式: 包含的值:None、Fill、Uniform、UniformToFill None:图片直...
分类:
其他好文 时间:
2014-10-15 18:27:31
阅读次数:
198
有网友表示对于很多工程中的MATCH_PARENT出现在layout中感到不明白,过去只有FILL_PARENT和WRAP_CONTENT那么match_parent到底是什么类型呢? 其实从Android 2.2开始FILL_PARENT改名为MATCH_PARENT ,从API Level为8开...
分类:
其他好文 时间:
2014-10-13 18:14:59
阅读次数:
176
鼠标响应: mouseX, mouseY 鼠标的坐标----------------------------------------------void setup(){ size(300,300); smooth(); background(200);}void draw(){ fill(...
分类:
其他好文 时间:
2014-10-13 15:51:09
阅读次数:
141
{x:Null}:用于设置某属性值为Null,比如,其实就相当于,个人感觉这个纯属MS的多余设计另外要注意一个问题:运行时,如果点击矩形中间区域,会发现无法触发Rectangle_MouseLeftButtonUp事件,因为矩形Fill属性为null,没有填充,相当于透明,所以鼠标点击穿透矩形,点到...
分类:
其他好文 时间:
2014-10-11 15:10:55
阅读次数:
138
今天无意间发现的processing 很有兴趣 实现很简洁void setup(){}void draw(){ background(255); if(mouseX height/2) { fill(0); rect(0,height/2,width/2,height/2); ...
分类:
其他好文 时间:
2014-10-10 23:58:04
阅读次数:
456