有两种方法可以激活--:修改/etc/gdm/custom.conf文件在[xdmcp]字段增加Enable=true--:通过gdmsetup图形配置工具来实现1.在LINUX桌面上选择System->Administration->Login Screen,在窗口中选中Remote标签2.点击右...
分类:
系统相关 时间:
2014-07-16 18:51:57
阅读次数:
276
Views and Shadows: elevation是构成控件阴影的基本属性。通过设置较高的Z值可以接受更大的阴影,阴影只能投射到Z=0的平面上。View Elevation 控件的Z值,是由两个值组成的:高度和位移。高度是固有的属性,位移可以用于创建动画。 Z = elevation +...
分类:
其他好文 时间:
2014-07-14 21:47:09
阅读次数:
257
Introduction
每一个应用程序可能都需要一个“about box”和程序启动时一个“splash screen”(启动画面),大多数开发者都使用自带的““about dialog””。我创建了一个类CSplashScreen,都可以处理这两者,使开发变的容易,有趣!从小的对话框组件程序到需要加在几分复杂程序,我都会使用这个类。
这个类有两个文件组成,SplashScreen....
分类:
编程语言 时间:
2014-07-14 16:17:51
阅读次数:
397
就是设计一个Mediator类,可以处理其他类的关系。
Mediator类:
1 拥有其他所有类的实例对象
2 设置一个接口供其他类使用,其他类也拥有一个Mediator类成员,只需调用这个Mediator接口函数使用,无需自己处理关系。
3 Mediator内部已经设置好各个类的关系了,其他类只要直接使用Mediator处理关系就可以了。
下面是一个聊天室聊天是处理关系的实例程序:...
分类:
其他好文 时间:
2014-07-14 12:49:41
阅读次数:
179
[转]Part 1 - Expressiveness of Simple TransformationsSimple Transformations are a SAP proprietary programming language that is integrated into ABAP by ...
分类:
其他好文 时间:
2014-07-14 10:49:11
阅读次数:
257
ay you have an array for which theithelement is the price of a given stock on dayi.Design an algorithm to find the maximum profit. You may complete at...
分类:
其他好文 时间:
2014-07-13 23:22:16
阅读次数:
294
http://developer.android.com/guide/practices/ui_guidelines/widget_design.html#design
http://developer.android.com/guide/topics/appwidgets/index.html
http://developer.android.com/guide/topics/appwidg...
分类:
移动开发 时间:
2014-07-13 18:03:10
阅读次数:
294
代理设计模式,这个模式很多用于服务器客户端之类的,上网也经常使用代理之类的,想起来感觉是很复杂的,不过这个设置模式本身是很简单的。
就是一个类调用另外一个类的函数,客户调用的是一个类,而实际的工作是由另外一个类做的。
体现这个设计模式的代码:
#include
class RealObj
{
public:
virtual void handleReq() = 0;
};...
分类:
其他好文 时间:
2014-07-13 17:30:48
阅读次数:
188
本文介绍如何创建自定义通知以及使用可穿戴UI库来创建自定义布局,同时还需要了解可穿戴设计准则(Wear Design Principles)。
除了屏幕尺寸和瞬读能力(Glance ability)外,为可穿戴应用创建布局大体和普通手机一样。...
分类:
移动开发 时间:
2014-07-13 17:25:03
阅读次数:
284
Say you have an array for which the ith element is the price of a given stock on day i.
Design an algorithm to find the maximum profit. You may complete at most two transactions.
Note:
You ma...
分类:
其他好文 时间:
2014-07-13 13:55:14
阅读次数:
305