
Android
sanshiqiduer
积微 -> 速成 ,平凡 -> 卓越!
展开
-
SDK Manager:failed to install
可能问题1:在Eclipse里启动SDK Manager的看这里The program that is using that folder is Eclipse itself. So using the Android SDK manager and launching it from Eclipse creates an situation where the SDK Manager tri原创 2012-12-18 10:52:01 · 2336 阅读 · 0 评论 -
Android Please ensure that adb is correctly located at问题解决
遇到问题描述:运行android程序控制台输出 [2012-07-18 16:18:26 - ] The connection to adb is down, and a severe error has occured. [2012-07-18 16:18:26 - ] You must restart adb and Eclipse. [2012-07-18原创 2012-12-18 11:06:12 · 13585 阅读 · 2 评论 -
Activity各种属性的解释
android:allowTaskReparenting用来标记Activity能否从启动的Task移动到有着affinity的Task(当这个Task进入到前台时)——“true”,表示能移动,“false”,表示它必须呆在启动时呆在的那个Task里。如果这个特性没有被设定,设定到元素上的allowTaskReparenting特性的值会应用到Activity上。默认值为“false”。转载 2013-01-09 11:15:27 · 1343 阅读 · 1 评论 -
android uses-permission
android.permission.ACCESS_CHECKIN_PROPERTIES允许读写访问”properties”表在checkin数据库中,改值可以修改上传android.permission.ACCESS_COARSE_LOCATION允许一个程序访问CellID或WiFi来获取粗略的位置android.permission.ACCESS_FINE_LOCATION翻译 2013-01-09 11:10:39 · 1230 阅读 · 0 评论 -
Intent 和 Intent Filter
Intent 和 Intent FilterAndroid 应用程序中有三大核心组件: Activity, Service, Broadcast Receiver 都是通过被称之为意图的消息运行。Intent messaging is a facility for late run-time binding between components in the same or differe转载 2013-01-09 11:40:12 · 829 阅读 · 0 评论 -
android:windowSoftInputMode属性详解
android:windowSoftInputModeactivity主窗口与软键盘的交互模式,可以用来避免输入法面板遮挡问题,Android1.5后的一个新特性。这个属性能影响两件事情:【一】当有焦点产生时,软键盘是隐藏还是显示【二】是否减少活动主窗口大小以便腾出空间放软键盘它的设置必须是下面列表中的一个值,或一个”state…”值加一个”adju转载 2013-01-09 11:23:35 · 1481 阅读 · 0 评论 -
移植SlidingMenu Android library和安装example出现的问题解决
很多项目都用到类似左侧滑动菜单的效果,比如facebook,evernote,VLC for android等等,这很酷源代码可以从GitHub的https://github.com/jfeinstein10/slidingmenu上下载。移植过程中会用到Actionbarsherlock这个项目,去http://actionbarsherlock.com/download.html下载。原创 2013-08-25 22:11:36 · 1818 阅读 · 1 评论