Start Android1、LinearLayout布局的嵌套2、layout_weight属性 该属性的值用于指定空闲空间的分配比例;match_parent 匹配父控件wrap_content 匹配内容这一章虽说是深入LinearLayout的布局其关键点在于嵌套一对设置好每一级Li...
分类:
移动开发 时间:
2014-08-14 23:17:26
阅读次数:
271
1、几个汉字后面跟一串英文 换行解决方法:word-break:break-all;word-wrap:break-word;display:block;2、ul/ol li在ie6下 会出现空隙 用浮动切记要给li加宽度解决方法:li vertical-align:top3、定位ie6下如果不显示...
分类:
其他好文 时间:
2014-08-13 18:21:47
阅读次数:
239
这段代码是在新浪网站上找到的。先放出CSS代码:.focus a.arrow,.card_con4 li i,.cm1_menu_wrap a.cm1_menu_box,.cm1_img span,.cm1_item1 a{ background: url(http://www.sinaimg.cn...
分类:
Web程序 时间:
2014-08-13 14:46:56
阅读次数:
301
----------------发送alt+v组合按键----------------------Set Wrap = CreateObject("DynamicWrapper") Wrap.Register "USER32.DLL", "keybd_event", "i=ccll", "f=s" ...
分类:
其他好文 时间:
2014-08-12 21:47:44
阅读次数:
1211
先定义一个显示条目的xml布局文件
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation=...
分类:
移动开发 时间:
2014-08-12 17:10:44
阅读次数:
221
如Beep的API声明为Public Declare Function Beep Lib “kernel32″ Alias “Beep” (ByVal dwFreq As Long, ByVal dwDuration As Long) As Long则使用方法如下'创建对象Set Wrap = Cr...
layout_width and layout_heigth 本框与外框之间的关系;属性有fill_parent,wrap_content,match_parent三个属性都用来适应视图的水平或垂直大小,一个以视图的内容或尺寸为基础的布局比精确地指定视图范围更加方便。1)fill_parent设置一...
分类:
其他好文 时间:
2014-08-11 20:27:22
阅读次数:
209
效果图:
在layout中这样来声明:
<com.kaixin001.view.ScrollText android:id="@+id/news_statustxt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="1...
分类:
移动开发 时间:
2014-08-10 18:44:20
阅读次数:
327
强制换行 1、word-break: break-all; 只对英文起作用,以字母作为换行依据。 2、word-wrap: break-word; 只对英文起作用,以单词作为换行依据。 3、white-space: pre-wrap; 只对中文起作用,强制换行。禁止换行 ...
分类:
Web程序 时间:
2014-08-09 18:09:38
阅读次数:
329
三个属性都用来适应视图的水平或垂直大小,一个以视图的内容或尺寸为基础的布局比精确地指定视图范围更加方便。1)fill_parent设置一个构件的布局为fill_parent将强制性地使构件扩展,以填充布局单元内尽可能多的空间。这跟Windows控件的dockstyle属性大体一致。设置一个顶部布局或...
分类:
移动开发 时间:
2014-08-09 11:25:07
阅读次数:
215