码迷,mamicode.com
首页 >  
搜索关键字:in section __text    ( 55715个结果
修改Android EditText光标颜色
EditText有一个属性:android:textCursorDrawable,这个属性是用来控制光标颜色的android:textCursorDrawable="@null","@null"作用是让光标颜色和text color一样
分类:移动开发   时间:2014-07-19 17:28:03    阅读次数:303
HTML基础教程(17)——HTML 4.01速查手册
自 W3School 的 HTML 快速参考。可以打印它,以备日常使用。HTML Basic DocumentDocument name goes hereVisible text goes hereText ElementsThis is a paragraph (line break) (hor...
分类:Web程序   时间:2014-07-19 17:20:19    阅读次数:217
linux终端快捷键
ctrl + u 撤销终端输入的长串命令ctrl + w 删除终端命令行最后一个单词
分类:系统相关   时间:2014-07-19 15:24:39    阅读次数:225
装饰模式,制作一个蛋糕java
import java.text.DecimalFormat; //抽象组件组件interface mkcake{ public void cake();}class Cake implements mkcake{ @Override public void cake() { ...
分类:编程语言   时间:2014-07-19 09:16:56    阅读次数:229
Android仿iPhone的日期时间选择器
先看效果图 如何使用 import java.text.DateFormat; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Calendar; import android.app.Activity; import android.app.AlertDialo...
分类:移动开发   时间:2014-07-19 02:47:55    阅读次数:276
USACO Section 2.1 The Castle
/* ID: lucien23 PROG: castle LANG: C++ */ /************************************************************************/ /* 求图的连通域问题,利用广度扫描 */ /******...
分类:其他好文   时间:2014-07-19 02:41:25    阅读次数:226
USACO Section 2.1 Ordered Fractions
/* ID: lucien23 PROG: frac1 LANG: C++ */ #include #include #include #include using namespace std; typedef struct Fraction { int numerator; int denominator; Fraction(){} Fraction(int x, int y...
分类:其他好文   时间:2014-07-19 02:31:25    阅读次数:199
USACO Section 2.1 Sorting a Three-Valued Sequence
/* ID: lucien23 PROG: sort3 LANG: C++ */ #include #include #include #include using namespace std; void exchange(int nums[], int begin, int end, int N, int x); int sum = 0; int main() { ifstream ...
分类:其他好文   时间:2014-07-19 02:12:25    阅读次数:176
关于ENVI5.0菜单栏不能正常显示(win7 x86系统)
在安装了envi5.0之后,打开显示的并不是之前4.8版本的样式也就罢了,还不能正常的将菜单栏显示出来。上网搜了下,发现又是一个是版本兼容的问题解决:找到Envi5.0 右键---属性---兼容性---禁用视觉主题OK,可以了
分类:Windows程序   时间:2014-07-19 00:39:14    阅读次数:282
win32多线程 (四) Mutex
Mutex 用途和critical section 非常类似,不过Mutex是内核对象,速度比section慢。Mutexes可以跨进程使用。另外Mutex在等待的时候可以设置等待时间。以下是两种对象的相关函数比较:CRITICAL_SECTION Mut...
分类:编程语言   时间:2014-07-19 00:38:29    阅读次数:342
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!