码迷,mamicode.com
首页 >  
搜索关键字:android学习    ( 1823个结果
Android学习Scroller(一)——View调用scrollTo()的理解及使用
MainActivity如下: package cc.uu; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.TextView; import andr...
分类:移动开发   时间:2014-08-09 23:16:49    阅读次数:407
Android学习路线(十三)Activity生命周期——停止和恢复(Pausing and Resuming )一个Activity
During normal app use, the foreground activity is sometimes obstructed by other visual components that cause the activity to pause. For example, when a semi-transparent activity opens (such as one in the style of a dialog), the previous activity pauses. As...
分类:移动开发   时间:2014-08-09 02:36:37    阅读次数:366
Android学习路线(十四)Activity生命周期——停止和重启(Stopping and Restarting)一个Activity
Properly stopping and restarting your activity is an important process in the activity lifecycle that ensures your users perceive that your app is always alive and doesn't lose their progress. There are a few of key scenarios in which your activity is stop...
分类:移动开发   时间:2014-08-09 02:36:17    阅读次数:496
Android学习路线(十五)Activity生命周期——重新创建(Recreating)一个Activity
There are a few scenarios in which your activity is destroyed due to normal app behavior, such as when the user presses the Back button or your activity signals its own destruction by calling finish(). The system may also destroy your activity if it's curr...
分类:移动开发   时间:2014-08-09 02:35:56    阅读次数:492
android学习笔记--android启动过程之init.rc文件浅析
1.??init.rc文件结构 文件位置: init.c??: /system/core/init init.rc??: /system/core/rootdir 首先init.rc文件是以模块为单位的,每个模块里的内容都是一起执行的,模块分为3种类型:on、service、impor...
分类:移动开发   时间:2014-08-08 21:34:46    阅读次数:402
Android学习之虚拟SD卡管理
继上一篇SD卡文件读取后,很多朋友表示如何新建并管理虚拟的SD卡呢?下面就让lz带大家了解下SD卡。 其实,要创建SD卡其实还是比较简单的。因为你下载的android的sdk包里面有tools文件夹 。通过它大家就可以创建自己的SD卡了。具体步骤:1 打开命令提示符 cmd2 将根目录转移到你to....
分类:移动开发   时间:2014-08-08 15:34:06    阅读次数:270
Android学习路线(十一)管理Activity的生命周期
当一个用户进入,退出,再次进入你的应用时,你的应用中的Activity 会在它的生命周期的各个状态下切换。例如,当你的activity第一次启动,它出现在系统的前方接受用户的焦点。在这个过程中,Android系统调用了一系列的生命周期方法来设置UI和其他组件。如果用户执行了一个操作,启动了另一个activity或者切换到其它应用中,你的activity会移动到后台(这时activity已经不可见,但是它的实力和状态都保持不变),系统会调用另外的一些生命周期方法。...
分类:移动开发   时间:2014-08-08 08:29:35    阅读次数:181
Android学习路线(十二)Activity生命周期——启动一个Activity
Unlike other programming paradigms in which apps are launched with a main()method, the Android system initiates code in an Activity instance by invoking specific callback methods that correspond to specific stages of its lifecycle. There is a sequence of c...
分类:移动开发   时间:2014-08-08 08:28:45    阅读次数:539
Android学习之listview的下拉刷新、上拉载入
本例是在上例的基础上完成的。本例实现的listview上拉载入、下拉刷新功能,是在开源网站上别人写好的listview,主要是对listview的控件进行重写,添加了footer和header。1.listview_footerlistview_footer是listview的底部。 1 2 5.....
分类:移动开发   时间:2014-08-07 18:32:50    阅读次数:397
Android学习路线(八)为Action bar添加action按钮
Action bar允许你为与当前应用上下文相关的最重要的action items添加action按钮。那些直接显示在action bar上的icon或者文字都被称作action buttons。那些不适合action bar或者不是那么重要的Actions将会被隐藏在action overflow(译者注:action bar最右侧的垂直的三个点)里。...
分类:移动开发   时间:2014-08-07 03:08:28    阅读次数:409
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!