Skip to main content

标 题: Android常用程序推荐

http://gengwg.blogspot.com/






[ 1 ]
发信人: thdp (dp), 信区: PDA
标  题: Android常用程序推荐
发信站: BBS 未名空间站 (Sat Mar 26 14:59:46 2011, 美东)

看置顶里还没有相关文章,我觉得android作为智能手机里很大的一个分支,针对新手的入门文章还是很有必要的。

我先来抛砖引玉,同时感谢以下筒子在回复里的推荐:Dar, killtime, cellneuron.

主要参考mobile01上的几个帖子
http://www.mobile01.com/topicdetail.php?f=423&t=1845945

1. 系统工具
ASTRO file manager, 文件管理器
Advanced task killer, 关闭多余的程序,进程,可以设定ignore list,自动关闭频率。
Fancy widget, 模仿HTC Sense界面的日期,天气widget
Quick settings, 集中管理常用服务的开关,比如3g data
Smart monitor, 监视系统资源使用情况,cpu, memory, storage, 网络流量
Timeriffic, 定时设置某些服务开启/关闭,省电好帮手。
Spare parts, 查看哪个程序在后台费电
PocketCloud, 远程登录,支持pc, mac.
z4root, root android系统的工具
MoreLocale 2, 为系统添加其他语言支持。

2. 电话短信
Heywire, 在iphone上就用过,免费发短信,支持中文,可以直接发到没有安装客户端的手机上。

Tango,目前我知道android上可用video call的软件,可以切换前后摄像头,支持在iphone和android互打。(fring在atrix和thunderbolt上只能用后摄像头。)

3. Email
K-9 mail: 功能强于android自带的email,同时接受多个账号,imap可以更改root folder。

4. 浏览器
Dolphin browser HD确实超强,通过插件扩展功能,password manager, gesture, ad block.

gReader, 非官方出品,支持google reader,界面很有好。
iReader, 电子书阅读器,庞大的中文网络书库,强烈推荐。

Pulse news,收集多种source的更新(新闻,social networks),显示在一起。
都不需要再装news专用的app了。

Read It Later,你可以在浏览器(包括dolphin hd browser)里选择share当前网页给ReadItLater,然后以后在RIL里可以读。如果你选择download,offline也可以读了。这个软件1块钱。

5. 中文输入法
iflytek, 科大讯飞出品,支持拼音,语音,手写输入。

6. 多媒体应用
POWERAMP, local music, free 15 days trial, full version $5.
DUOMI, online music
Google Tunes, download music

Rockplayer, 国人写的一个播放器,支持多种音频和视频格式
搜狐视频
CNLive, 手机电视,国内电视台节目直播,缓冲很快,播放流畅
TuneIn radio,网络收音机

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...