应用图标在哪里显示
在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
RSSI=Received Signal Strength Indication which
generally appears as "bars" in our software. It indicates how much power is in
the radio signal your ro...
分类:
其他好文 时间:
2014-06-03 12:20:59
阅读次数:
529
Description
Golden ratio base (GRB) is a non-integer positional numeral system that uses the golden ratio (the irrational number (1+√5)/2 ≈ 1.61803399 symbolized by the Greek letter φ) as its base....
分类:
其他好文 时间:
2014-06-01 15:38:24
阅读次数:
252
本文主要内容:在任务一中,用 四
种方式实现:点击界面按钮,开线程运行一段程序,结果显示在一个Label上。1. 用不正确的方式得到看似正确的结果2. 用Qt Manual 和
例子中使用的方法3. 用一种好用但被Qt开发人员批判的方法4. 用一种被开发人员强烈推荐,但Qt Manual和例子中只字...
分类:
其他好文 时间:
2014-05-29 21:51:34
阅读次数:
310
一、UILabel常用属性1——实例化和设置文字// 实例化UILabel并指定其边框UILabel
*label = [[UILabel alloc]initWithFrame:CGRectMake(0.0, 210.0, 320.0, 40.0)];//
设置label显示的文本[label s...
分类:
其他好文 时间:
2014-05-29 18:14:03
阅读次数:
206