1、通过一个Data.java实例类,能够实现全局数据保存,这里就不多说了,学Java的都知道。2、Android特有的Application,是应用的入口,执行贯穿整个app执行过程,能够在这个类中定义全局变量public class baseApplication extends Applica...
分类:
移动开发 时间:
2014-06-27 21:28:16
阅读次数:
256
1:MyServicepublic class MyService extends IntentService{ AlarmManager alarmManager = null; PendingIntent alarmIntent = null; public MySe...
分类:
移动开发 时间:
2014-06-25 19:16:20
阅读次数:
261
publicclassMainActivityextendsActivity{ GrameViewgrameView;@OverridepublicvoidonCreate(BundlesavedInstanceState){super.onCreate(savedInstanceState);gr...
分类:
其他好文 时间:
2014-06-25 11:36:52
阅读次数:
238
一、通过View实现自定义视图通过构造函数创建可视界面public class MyView extends View { // Constructor required for in-code creation public MyView(Context context) { super...
分类:
其他好文 时间:
2014-06-25 11:26:33
阅读次数:
269
我们在开发注册界面的时候,最后几个注册条件常常容易被系统弹出的键盘遮挡,如下图:
可以看见,邮箱条件被遮挡掉了,怎么解决呢?我是通过UITextField的代理加计算偏移量:
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, ty...
分类:
移动开发 时间:
2014-06-25 07:28:37
阅读次数:
232
1)游戏图层设计:public class WellcomeLayer extends CCLayer { public WellcomeLayer() { this.setIsTouchEnabled(true); CCSprite background1 = CCSprite.sprite(.....
分类:
移动开发 时间:
2014-06-25 00:40:48
阅读次数:
373
abstract class BaseAction extends ActionSupport {
protected DB db;
protected static Log log = LogFactory.getLog(BaseAction.class);
private long requestId;
private boolean readOnly = false;
priv...
分类:
其他好文 时间:
2014-06-24 20:10:32
阅读次数:
197
看了2个blog后还是没闹明白 因为Django的东西 所以自己写了test的例子终于明白了
首先给出结论---->别人总结的可惜一开始没闹明白:
1. super并不是一个函数,是一个类名,形如super(B, self)事实上调用了super类的初始化函数,
产生了一个super对象;
2. super类的初始化函数并没有做什么特殊的操作,只是简单记录了类类型和具体实例;...
分类:
编程语言 时间:
2014-06-24 18:39:17
阅读次数:
342
org.apache.flume.sink.AvroSink是用来通过网络来传输数据的,可以将event发送到RPC服务器(比如AvroSource),使用AvroSink和AvroSource可以组成分层结构。它继承自AbstractRpcSink extends AbstractSink implements Configurable这跟其他的sink一样都得extends Abstract...
分类:
编程语言 时间:
2014-06-24 16:01:30
阅读次数:
303
效果:想看实例的,感兴趣的能够看之前的一篇文章Android ViewPager Fragment实现选项卡部分关键代码:public class SerializeActivity extends Activity implements Serializable { Button btnlist,...
分类:
移动开发 时间:
2014-06-24 14:50:59
阅读次数:
261