Saving Files
保存文件
PreviousNextGet
started
This lesson teaches you to
Choose Internal or External Storage 选择内部或者外部存储
Obtain Permissions for External S...
分类:
其他好文 时间:
2014-06-05 10:45:59
阅读次数:
387
60款开源云应用【Part 1】(60 Open Source Apps You Can Use in the Cloud)
本篇翻译自http://www.datamation.com/open-source/60-open-source-apps-you-can-use-in-the-cloud-1.html,原作者Cynthia
Harvey。
本人对云服务也是没有了解太多,希...
分类:
移动开发 时间:
2014-06-05 09:57:12
阅读次数:
609
Managing the Activity Lifecycle
GET
STARTED
DEPENDENCIES AND PREREQUISITES
How to create an Android project (seeCreating
an Android Project)
YOU SHOULD ALSO READ
Activ...
分类:
其他好文 时间:
2014-06-05 09:35:17
阅读次数:
320
freemarker处理空值
1、设计思路
(1)封装学生类和课程类
(2)新建学生课程页面ftl文件
(3)创建测试方法
2、封装课程类
Course.java:
/**
* @Title:Course.java
* @Package:com.you.freemarker.model
* @Description:课程封装类
* @author:Youh...
分类:
其他好文 时间:
2014-06-05 08:50:45
阅读次数:
178
1.首先我们的目的是长期监听时间变化,其实应用程序退出。
通过了解我们知道注册ACTION_TIME_TICK广播接收器可以监听系统事件改变,但是
查看SDK发现ACTION_TIME_TICK广播事件只能动态注册:
Broadcast Action: The current time has changed. Sent every minute. You can not receive t...
分类:
移动开发 时间:
2014-06-05 08:35:13
阅读次数:
285
【题目】
Given a m x n matrix, if an element is 0, set its entire row and column to 0. Do it in place.
【题意】
给定一个mXn的矩阵,如果其中的元素为0,则对应的行和列都用0填充。
不能申请额外的空间。
【思路】
第一行和第一列空出来标记需要置0的列和行
第一遍扫描:
扫描第一行,判断第一行是否需要清零
...
分类:
其他好文 时间:
2014-06-05 08:07:11
阅读次数:
229
Starting an Activity
开启一个活动
Previous NextGet
started
This lesson teaches you to
这个课程教你去了解以下:
Understand the Lifecycle Callbacks 理解生命周期回调Specify Your App's Launcher Act...
分类:
其他好文 时间:
2014-06-05 07:08:15
阅读次数:
359
1 2 13 25 26 You can count on this being a dark
29 background with light text on top, but should try to make no 30 other
assumptions ...
分类:
移动开发 时间:
2014-05-31 06:12:59
阅读次数:
492
Jump Game IIGiven an array of non-negative
integers, you are initially positioned at the first index of the array.Each
element in the array represents...
分类:
其他好文 时间:
2014-05-31 03:14:14
阅读次数:
243
一 while循环二do while循环三
for循环for循环的执行顺序用如下表达式:for(expression1;expression2;expression3) 循环变量初值; 循环条件;
循环变量增量{ expression4;} 执行的顺序应该是:1)第一次循环,即初始化循环。 ...
分类:
编程语言 时间:
2014-05-31 01:00:04
阅读次数:
364