[ 问题: ]
Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string.
If the last word does not exist, return 0.
[...
分类:
其他好文 时间:
2014-07-22 23:01:35
阅读次数:
331
这个是缩进问题,重新将行前面的空格删掉,换位tab
分类:
编程语言 时间:
2014-05-12 16:35:23
阅读次数:
383
首先用package system安装android-mode, 然后编辑~/.emacs.d/init.el文件,添加下面几行:(require 'android-mode)
(setq android-mode-sdk-dir "/opt/android-sdk-linux/")现在重新启动emacs,然后M-x 中运行命令android-start-emulator此时会提示输入Androi...
分类:
移动开发 时间:
2014-05-02 22:49:40
阅读次数:
561
当 Activity 的启动模式是 singleTask 或者 singleInstance
的时候。如果使用了 intent 传值,则可能出现 intent 的值无法更新的问题。也就是说每次 intent 接收到的值都是第一次接到的值。因为
intent 没有被更新。想要更新需要做两件事情。1. ...
分类:
移动开发 时间:
2014-05-02 20:54:53
阅读次数:
394
当某个activity变得“容易”被系统销毁时,该activity的onSaveInstanceState就会被执行,除非该activity是被用户主动销毁的,例如当用户按BACK键的时候。注意上面的双引号,何为“容易”?言下之意就是该activity还没有被销毁,而仅仅是一种可能性。这种可能性有哪...
分类:
移动开发 时间:
2014-05-02 09:15:13
阅读次数:
419
安装ActionBar:
Support Android 3.0 and Above Only(仅支持3.0版本之后)
...
Support Android 2.1 and Above(如果想让应用支持3.1版本之后,需如下操作)
1安装v7 appcompat 库
2Update your activity so that it extends ActionB...
分类:
移动开发 时间:
2014-05-02 06:52:12
阅读次数:
508
Zxing 竖屏切换 android
在google上下载的ZxingDemo 为横屏状态
我简单的在Androidmanifest.xml把Activity换成竖屏android:screenOrientation="portrait"
屏幕虽然正了 但是屏幕上显示的拍摄画面还是横着的
查了一些网上的资料 结合自己手工调试
在这里总结分享一下
步骤:
1) 在AndroidManifest.xml中把 标签 CaptureActiv...
分类:
移动开发 时间:
2014-05-02 05:14:38
阅读次数:
408
问题描述:
在Eclipse中运行ant批量打包工具出错,日志信息如下:
D:\Android\android-sdk-windows\tools\ant\build.xml:601: The following error occurred
while executing this line:
D:\Android\android-sdk-windows\tools\ant\bui...
分类:
移动开发 时间:
2014-04-30 22:48:39
阅读次数:
359
利用apkplug框架用插件生成的View动态替换(添加)宿主Activity中的UI元素,以实现无需更新宿主应用就改变宿主UI样式的目的...
分类:
移动开发 时间:
2014-04-30 22:44:40
阅读次数:
421
在android 软件第一次使用的时候,一般会在当前的界面上做一个灰色的蒙版,上面有显示的一些提醒性质的教学文字或者图案。
我想的是当前界面上蒙上一个 Fragment 把提示信息也放在Fragment上。
这是效果图。后面附上demo源码。
具体就是在activity成功启动之后。画出activity的view之后。这个不能在生命周期进行判断。我尝试的是用Handler去不...
分类:
其他好文 时间:
2014-04-30 22:35:38
阅读次数:
333