自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

原创 Android Study Notes - Activity

An activity is an component that provides a window with which user can interact. The window typically fills the whole screen, or may float on top of other windows.   An application usually consists ...

2011-07-16 15:29:30 96

Android Study Notes - Application Fundamentals

Application Fundamentals   Android applications are written in Java programming language, compiled into a *.apk file     Each application is assigned an unique Linux User ID by default, which is...

2011-07-16 12:38:59 93

原创 Java语法笔记-泛型

泛型方法和构造函数    class Box<T> { private T t; <S> Box(S s) { } } Box<Integer> a = new Box<Integer>("hello"); Box<Integer> b = new <String&

2011-05-27 17:45:10 97

原创 Java语法笔记-综合

1. 初始化   instance variable:在声明时简单赋值,构造函数,initializer block(暂时不知道这种风格好不好),method(effective java提倡final method,暂时未看)。java编译器会把initializer block插入每个构造函数中      class variable: 用static block或者static...

2011-05-27 16:09:43 99

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除