应用图标在哪里显示
在application中添加的是应用图标,在activity中会默认加入图标
在设置-应用
代码如下: android:icon="";
查看运行客户端界面信息
应用的名称在哪里android:label
应用的label也在 设置-应用中
但是一般不单独给 activity起名称,都是使用应用名称
in...
分类:
其他好文 时间:
2014-06-05 09:59:53
阅读次数:
284
1.Cocoa-4th 的 Chapter2 - Random 制作方法
STEP 1
New Application
STEP2
MainMenu.xib
增加控件:2个按钮Square Button (NSButton),1个标签Label (NSTextField)
STEP3
Add Files: Objective-C Class 类型 ,命名为:Random
选...
分类:
其他好文 时间:
2014-06-05 08:54:35
阅读次数:
258
第十三章编程练习答案
13.1根据Cd基类,完成派生出一个Classic类,并测试
//13.1根据Cd基类,完成派生出一个Classic类,并测试
#include
#include
using namespace std;
// base class
class Cd
{
char performers[50];
char label[20];
int selections; ...
分类:
编程语言 时间:
2014-06-04 23:45:54
阅读次数:
490
为表单元素label加上for属性。粉色
for属性能让点击label标签的时候,同时focus到对应的input和textarea上,增加响应区域。其中for取值和input中id取值要一致(兼容ie)
分类:
其他好文 时间:
2014-06-04 18:45:10
阅读次数:
194
原题地址:https://oj.leetcode.com/problems/word-break/题意:Given
a stringsand a dictionary of wordsdict, determine ifscan be segmented into a
space-separated...
分类:
编程语言 时间:
2014-06-03 09:14:24
阅读次数:
293
原题地址:https://oj.leetcode.com/problems/word-break-ii/题意:Given
a stringsand a dictionary of wordsdict, add spaces insto construct a sentence
where each ...
分类:
编程语言 时间:
2014-06-03 07:13:21
阅读次数:
339
C# yeild的两种形式的yield语句:yield return ;yield break; 使用
yield return 语句每一次返回每个元素。 将使用 foreach 语句从客户端代码中调用迭代器。 foreach 循环的每次迭代都会调用迭代器方法。
迭代器方法运行到 yield...
分类:
其他好文 时间:
2014-05-31 20:00:25
阅读次数:
354
NameNumericDescriptionHexISO in CSS
contentOctal no-break space%A0p:before { content:"\00a0";
}alert("\240");¡?¡inverted exclamation m...
分类:
Web程序 时间:
2014-05-31 11:26:22
阅读次数:
881
前段日子发布的负面情绪太多了,哦哦,其实我需要的是努力,努力提高自己的真实能力。经历了好多的鄙视否定,我已经没有最初那么敏感,心态平和了许多。我没有借口说基础不好了,一年了,要努力的话,那么我应该不会落后太远,可我努力了吗?好像大部分回忆都是在加班加点的费劲的完成任务,而自己的编程知识确实无暇...
分类:
其他好文 时间:
2014-05-30 16:59:53
阅读次数:
255
Given a stringsand a dictionary of wordsdict,
add spaces insto construct a sentence where each word is a valid dictionary
word.Return all such possibl...
分类:
其他好文 时间:
2014-05-30 16:28:34
阅读次数:
199