android开发学习
文章平均质量分 64
promenader
这个作者很懒,什么都没留下…
展开
-
android应用程序的目录结构
android目录结构如下图: 首先是android的库 下面的private libraries是新加入的库,一般Private libs是本项目用的,不用导出到引用项目中去,具体设置是在order and export中设置.但是private libs应该是跟libs dependency一样 src目录: 项目的源代码 gen目录: adt自动生成的,该目录下的R.ja原创 2014-02-23 11:19:25 · 536 阅读 · 0 评论 -
android资源的管理和使用
简单介绍使用图片资源和声音资源 1、图片资源的使用 xml文件方式: main.xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_paren原创 2014-02-23 13:03:24 · 465 阅读 · 0 评论 -
AndroidManifest.xml文件详解
参考http://blog.chinaunix.net/uid-9185047-id-3460344.html转载 2014-02-23 14:11:30 · 361 阅读 · 0 评论 -
Activity的生命周期
关于生命周期参考 http://www.oschina.net/question/54100_27841转载 2014-02-23 15:09:29 · 464 阅读 · 0 评论 -
service的生命周期
有了 Service 类我们如何启动他呢,有两种方法: • Context.startService() • Context.bindService() 1. 在同一个应用任何地方调用 startService() 方法就能启动 Service 了,然后系统会回调 Service 类的 onCreate() 以及 onStart() 方法。这转载 2014-02-24 09:24:51 · 517 阅读 · 0 评论 -
表格布局器练习--计算器
例子中的一个计算器程序: xml布局文件 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="v原创 2014-02-24 16:26:57 · 1462 阅读 · 1 评论