2014年8月26日 日志

 1 public String TAG = null;
 2
 3     public AbstractActivity() {
 4         TAG = this.getClass().getName();
 7     }
 8
 9
10     @Override
11     protected void onCreate(Bundle savedInstanceState) {
12         super.onCreate(savedInstanceState);14
15         //去掉title
16         requestWindowFeature(Window.FEATURE_NO_TITLE);
17         //强制竖屏
18         setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
19         //设置软键盘不弹出
20         getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
21         //ViewTree layout  Listener soft keyBoard state
22     }
 1   /**
 2      * Called as part of the activity lifecycle when an activity is going into
 3      * the background, but has not (yet) been killed.  The counterpart to
 4      * {@link #onResume}.
 5      *
 6      * <p>When activity B is launched in front of activity A, this callback will
 7      * be invoked on A.  B will not be created until A‘s {@link #onPause} returns,
 8      * so be sure to not do anything lengthy here.
 9      *
10      * <p>This callback is mostly used for saving any persistent state the
11      * activity is editing, to present a "edit in place" model to the user and
12      * making sure nothing is lost if there are not enough resources to start
13      * the new activity without first killing this one.  This is also a good
14      * place to do things like stop animations and other things that consume a
15      * noticeable mount of CPU in order to make the switch to the next activity
16      * as fast as possible, or to close resources that are exclusive access
17      * such as the camera.
18      *
19      * <p>In situations where the system needs more memory it may kill paused
20      * processes to reclaim resources.  Because of this, you should be sure
21      * that all of your state is saved by the time you return from
22      * this function.  In general {@link #onSaveInstanceState} is used to save
23      * per-instance state in the activity and this method is used to store
24      * global persistent data (in content providers, files, etc.)
25      *
26      * <p>After receiving this call you will usually receive a following call
27      * to {@link #onStop} (after the next activity has been resumed and
28      * displayed), however in some cases there will be a direct call back to
29      * {@link #onResume} without going through the stopped state.
30      *
31      * <p><em>Derived classes must call through to the super class‘s
32      * implementation of this method.  If they do not, an exception will be
33      * thrown.</em></p>
34      *
35      * @see #onResume
36      * @see #onSaveInstanceState
37      * @see #onStop
38      */
39     protected void onPause() {
40         mCalled = true;
41     }
 1                 r.window = r.activity.getWindow();
 2                 View decor = r.window.getDecorView();
 3                 decor.setVisibility(View.INVISIBLE);
 4                 ViewManager wm = a.getWindowManager();
 5                 WindowManager.LayoutParams l = r.window.getAttributes();
 6                 a.mDecor = decor;
 7                 l.type = WindowManager.LayoutParams.TYPE_BASE_APPLICATION;
 8                 l.softInputMode |= forwardBit;
 9                 if (a.mVisibleFromClient) {
10                     a.mWindowAdded = true;
11                     wm.addView(decor, l);
12                 }

good

时间: 2024-12-28 20:18:30

2014年8月26日 日志的相关文章

【每日圣经日历】2014年9月26日

Vendredi le 26 Septembre 2014 礼拜五 2014年9月26日 Si tu confesses de ta bouche le Seigneur Jésus, et si tu crois dans ton coeur que Dieu l'a ressuscité des morts, tu seras sauvé.                                                                      Romains

2014年11月26日(程序员的加班)

今天终于到了,终于快把一个月的加班日子熬到头了,连续加班一个月周六也上班,这样的一个月真心累,但是我想每个公司都一样,到年底了需要维护的软件陡然增多,所以免不了在临近春节时候进行加班来赶进度,或许这就是国内软件公司的共同之处吧! 早上刚到,项目经理就统计了加班时间,77.9小时啊!一个月加了这么多,真心把人累死,我个人对加班并不是很感兴趣,我认为工资低这个是事实,不能因为加班费来提高工资,程序员能不加班就不要加班,可以利用更多的时间来为自己补充知识,不学习就退步,这就是现实. 加班占用的时间,去

输出今天的日期,以YYYY-MM-DD的方式,比如今天是2014年9月26日,则输出2014-09-26

var d = new Date(); // 获取年,getFullYear()返回4位的数字 var year = d.getFullYear(); // 获取月,月份比较特殊,0是1月,11是12月 var month = d.getMonth() + 1; // 变成两位 month = month < 10 ? '0' + month : month; // 获取日 var day = d.getDate(); day = day < 10 ? '0' + day : day; ale

2014年10月26日 夜

来北京二十天了,除了美的电器的通知,北京的公司毫无进展.昨天下午把简历改了一下,又投了几家.看到一道题,结果代码都写不利索了. 今天傍晚房东来要房租,交了下个月房租,吃饭钱都不够了. 尽量在下周内搞定工作,如果在十一月中旬前找不到工作,就换条路走.

2014年12月26日

今天要修改一个基于bootstrap模态框的位置和大小,难点在于怎么去动态地获取浏览器的可视区域的宽高,请注意是‘可视区域的宽高’! 找到解决代码如下,为了以后方便查找,我就直接贴在下面了: var winSize = function() { var e = window, a = 'inner'; if (!('innerWidth' in window )){ a = 'client'; e = document.documentElement || document.body; } re

【邀请函】9月26日(周五)第14期Spark公益大讲堂(Spark on Docker深入揭秘)

Docker云计算最新一代虚拟化技术 ,正逐步成为PAAS轻量级虚拟化技术的标准.作为一个开源的应用容器引擎,Docker不依赖于任何语言.任何框架和系统,使用沙箱机制的Docker可以让开发者把应用打包到可移植的容器之中并能够部署到所有的主流的Linux/Unix系统上.本次课程,深入Docker本质和内幕,从深入虚拟化技术开始,到深入Docker内核,到使用DockerFile构建并管理Image,紧接讲解PaaS下的Doker,最后解析Spark on Docker,是Spark爱好者和D

豪迪qq群发器2014破解版(5月26日)haodi软件QQ5.5群发

软件名称:豪迪qq群发器2014破解版(5月26日)haodi软件QQ5.5群发软件说明:官方对豪迪进行了更新,应该是针对QQ的版本升级到QQ5.5 的改变,已经针对QQ5.5测试过可以使用破解使用:(下载前后看下说明)1.小众论坛回帖下载豪迪qq群发器2014破解版(5月26日)haodi软件QQ5.5群发2.运行qqqf.exe3.运行 豪迪QQ2014破解(5月26日)破解补丁.exe  点击小众论坛破解4.开始使用吧.测试截图: 土豪下载通道:http://tuan.xzrj.cc/vi

4月26日上午学习日志

2017年4月26日上午继续按照昨天记忆单词的方法,把英语单词的多种词意联系起来记忆,今天听写了一下昨天所背单词,确实比以前记忆的要好,此外就看专业课视频了解了机器语言,汇编语言,高级语言.机器语言是计算机可以识别并运行的二进制代码 汇编语言是将二进制的机器码通过助记符的方式让人可以更方便的编写并检查的低级语言 汇编语言接近机器语言,可以看做是机器语言的另一种形式,计算机在运行时也需要将其变为机器语言的二进制才可运行 高级语言最接近人类语言,但机器是无法执行的,需要最终编译连接成二进制的机器代码

2014年6月6日22:35:21

sln:使用解决方案文件(后缀为sln的文件)表示一个项目组,他通常包含一个解决方案中所有的项目信息.一个sln文件通常由三部分组成:1. 文件版本.2. 工程信息.3. 全局设置. csproj:它是"C Sharp Project"的缩写...net 开发环境中建立项目时,会产生 .csproj 文件,这是C#的项目文件,其中记录了与项目有关的相关信息,例如包含的文件,程序的版本,所生成的文件的类型和位置的信息等. 1 //换行.看起来是两个,其实\和后面的是一体的 2 char