首页 > 代码库 > 第1天

第1天

第1天.md
路径 C:\Users\kong\Desktop\新建文件夹 (2)\
大小 14.1 KB
类型 MD 文件
修改日期 2014年10月24日 12:31:49
文件被导入 2014年11月3日 22:45:17

刘峰

18910903535

272317486

liuf@itcast.cn

1.1G-4G的介绍

2.Android操作系统介绍

3.Android历史介绍

4.Android系统架构(重点)

  1. 第一层:应用层Application
  2. 第二层:应用框架层Application Framework
  3. 第三层:Android底层类库层 LibrariesDalvik虚拟机
  4. 第四层:linux内核层 linux kernel
  5. Android试运行在Linux内核基础之上的。

5.两种虚拟机的不同 (重点)

  1. 1、架构不同:JVM使用栈架构;Dalvik使用的是寄存器,数据是加载到CUP的寄存器上的。
  2. 2JVM加载的.class文件,Dalvik加载的是.dex文件,对内存的分配情况做了优化。

6.SDKManger的使用

  1. 可以在里面管理SDK版本的下载和卸载。

7.模拟器的简介及创建

  1. VGA 480* 640
  2. QVGA 240*320
  3. HVGA 320*480
  4. WQVGA 240*400
  5. FWVGA 480*854
  6. WVGA 480*800
  7. AVD: Android virtual Device

8. AVD的创建

9.DDMS介绍

  1. DDMSDevice Definition Motion Service

10.SDK目录

  1. add-ons:存放高级应用的API的文件
  2. build-tools:构建工具
  3. docs:开发文档
  4. extras:存放依赖的第三方的包
  5. platforms:各个平台的文件
  6. adbandroid debug brigde android调试桥
  7. sourcesAPI的源代码文件
  8. system-images:系统的镜像文件
  9. tools:工具文件

11.创建HelloWorld

  1. 部署apk文件的过程:
  2. IDE判断adb是不是正在工作,用adbapk文件上传到模拟上,模拟器安装apk文件,开启应用软件。

12.Android工程的目录结构(重点)

  1. src/ java源代码存放目录
  2. gen/ 自动生成目录
  3. gen 目录中存放所有由Android开发工具自动生成的文件。目录中最重要的就是R.java文件。 这个文件由Android开发工具自动产生的。Android开发工具会自动根据你放入res目录的资源,同步更新修改R.java文件。正因为R.java文件是由开发工具自动生成的,所以我们应避免手工修改R.javaR.java在应用中起到了字典的作用,它包含了各种资源的id,通过R.java,应用可以很方便地找到对应资源。另外编绎器也会检查R.java列表中的资源是否被使用到,没有被使用到的资源不会编绎进软件中,这样可以减少应用在手机占用的空间。
  4. res/ 资源(Resource)目录
  5. 在这个目录中我们可以存放应用使用到的各种资源,如xml界面文件,图片或数据。具体请看ppt下方备注栏。
  6. libs/ 支持库目录
  7. 程序开发时需要的一些三方的jar包可以放在这个目录,系统会自动把里面的jar包,添加到环境变量。
  8. assets资源目录
  9. Android除了提供/res目录存放资源文件外,在/assets目录也可以存放资源文件,而且/assets目录下的资源文件不会在R.java自动生成ID,所以读取/assets目录下的文件必须指定文件的路径,如:file:///android_asset/xxx.3gp
  10. AndroidManifest.xml 项目清单文件
  11. 这个文件列出了应用程序所提供的功能,以后你开发好的各种组件需要在该文件中进行配置,如果应用使用到了系统内置的应用(如电话服务、互联网服务、短信服务、GPS服务等等),你还需在该文件中声明使用权限。
  12. project.properties 项目环境信息,一般是不需要修改此文件

13.Android的打包过程

  1. 是把Android的应用程序打包成一个.apk文件,.apk文件可以安装在手机或者模拟器上。
  2. 如果是签名打包,是在打包的过程中,对文件进行了加密。
  3. 投放到Android市场上的应用软件必须签名。

14.ADB命令

  1. 常见命令:
  2. adb devices 列出所有的设备
  3. adb shell 挂载到linux的空间
  4. adb install xxx.apk 如果有多个设备,我们可以指定设备 adb install s emulator-5554 D:/xxx.apk
  5. emulator avd advname 启动模拟器 例如:emulator avd 2.2 (2.2 为我们创建设备的名称)
  6. mksdcard 20m d:/sdcard.img 创建sdcard
  7. adb pull <remote> <local>
  8. adb push <local> <remote>
  9. android create avd name android2.2 target 8 创建模拟器
  10. ctrl + F11 横竖屏的切换

15.电话拨号器(重点)

  1. 开发项目的步骤:
  2. 1、理解需求,弄明白需求后在写代码;
  3. 2、在Android工程中设计UI界面;
  4. 3、代码实现业务逻辑;

电话拨号器的代码:

  1. //初始化布局文件中的控件
  2. et_phone = (EditText) findViewById(R.id.et_phone);
  3. Button bt_call = (Button) findViewById(R.id.bt_call);
  4. //获得EditText控件里面的数据
  5. bt_call.setOnClickListener(new OnClickListener() {
  6. @Override
  7. public void onClick(View v) {
  8. //拨打电话号码
  9. //获取数据框中的电话号码
  10. String phone = et_phone.getText().toString().trim();
  11. //创建一个拨打电话的意图
  12. Intent intent = new Intent();
  13. //设置拨打电话号码的动作
  14. intent.setAction(Intent.ACTION_CALL);
  15. //设置拨打的电话号码
  16. intent.setData(Uri.parse("tel://"+phone));
  17. //开启拨打电话的意图
  18. startActivity(intent);
  19. }
  20. });

16.四种点击事件

  1. 1、设置按钮的单击事件的监听器,创建匿名内部类
  2. bt_call.setOnClickListener(new OnClickListener() {
  3. @Override
  4. public void onClick(View v) {
  5. //拨打电话号码
  6. String phone = et_phone.getText().toString().trim();
  7. Intent intent = new Intent();
  8. intent.setAction(Intent.ACTION_CALL);
  9. System.out.println("phone="+phone);
  10. intent.setData(Uri.parse("tel://"+phone));
  11. startActivity(intent);
  12. }
  13. });
  14. 2、创建一个内部类
  15. private class MyOnClickListener implements OnClickListener{
  16. @Override
  17. public void onClick(View v) {
  18. //拨打电话号码
  19. String phone = et_phone.getText().toString().trim();
  20. Intent intent = new Intent();
  21. intent.setAction(Intent.ACTION_CALL);
  22. System.out.println("phone="+phone);
  23. intent.setData(Uri.parse("tel://"+phone));
  24. startActivity(intent);
  25. }
  26. }
  27. //别忘记给按钮添加一个单击事件的监听器
  28. bt_call.setOnClickListener(new MyOnClickListener());
  29. 3、在布局文件中给按钮添加一个单击事件的响应方法,然后在代码中实现这个方法
  30. (1)在布局文件中给按钮添加一个单击事件的响应方法
  31. <Button
  32. android:layout_width="match_parent"
  33. android:layout_height="wrap_content"
  34. android:text="拨打"
  35. android:id="@+id/bt_call"
  36. android:onClick="call"
  37. />
  38. (2)在代码中实现这个方法
  39. //view 表示的是按钮这个视图
  40. public void call(View view){
  41. //拨打电话号码
  42. String phone = et_phone.getText().toString().trim();
  43. Intent intent = new Intent();
  44. intent.setAction(Intent.ACTION_CALL);
  45. System.out.println("phone="+phone);
  46. intent.setData(Uri.parse("tel://"+phone));
  47. startActivity(intent);
  48. }

17.框架布局

  1. 后面一个控件会覆盖前一个控件的界面。
  2. 示例代码:
  3. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:paddingBottom="@dimen/activity_vertical_margin"
  8. android:paddingLeft="@dimen/activity_horizontal_margin"
  9. android:paddingRight="@dimen/activity_horizontal_margin"
  10. android:paddingTop="@dimen/activity_vertical_margin"
  11. tools:context=".MainActivity" >
  12. <TextView
  13. android:layout_width="300dip"
  14. android:layout_height="300dip"
  15. android:text="黑色"
  16. android:layout_gravity="center"
  17. android:background="#000000"
  18. android:id="@+id/tv_black" />
  19. <TextView
  20. android:layout_width="200dip"
  21. android:layout_height="200dip"
  22. android:text="红色"
  23. android:layout_gravity="center"
  24. android:background="#FF0000"
  25. android:id="@+id/tv_red" />
  26. </FrameLayout>

18.线性布局(重点)

  1. 线性布局在xml文件中使用<LinearLayout>来定义。
  2. 线性布局可以分为水平和垂直方向的布局,可以通过android:orientation来定义方向,android:orientation=“horizontal”表示水平方向,android:orientation=“vertical”表示垂直方向。
  3. android:layout_width表示控件的宽度,android_layout_height表示控件的高度,其属性值有wrap_contentfill_parentmatch_parent三种。其中,wrap_content表示填满父控件的空白,fill_parent表示大小刚好足够显示当前控件里的内容,match_parentfill_parent作用是相同的。
  4. android:layout_weight表示控件的权重,描述了控件所占的比例有多大。所有的视图都有layout_weight值,其默认为零,表示需要显示多大的视图就占据多大的屏幕空间。若赋一个高于零的值,则将父视图中的可用空间分割,分割大小具体取决于每一个视图的layout_weight值以及该值在当前屏幕布局的整体layout_weight值和在其它视图屏幕布局的layout_weight值中所占的比率而定。
  5. weight的使用。
  6. 示例代码一:线性布局
  7. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  8. xmlns:tools="http://schemas.android.com/tools"
  9. android:layout_width="match_parent"
  10. android:layout_height="match_parent"
  11. android:orientation="vertical"
  12. tools:context=".MainActivity" >
  13. <TextView
  14. android:layout_width="wrap_content"
  15. android:layout_height="wrap_content"
  16. android:text="第一控件" />
  17. <TextView
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:text="第二控件" />
  21. <Button
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:text="按钮"
  25. />
  26. </LinearLayout>
  27. 示例代码二:水平布局
  28. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  29. xmlns:tools="http://schemas.android.com/tools"
  30. android:layout_width="match_parent"
  31. android:layout_height="match_parent"
  32. android:orientation="vertical"
  33. tools:context=".MainActivity" >
  34. <Button
  35. android:layout_width="match_parent"
  36. android:layout_height="wrap_content"
  37. android:text="按钮"
  38. />
  39. <LinearLayout
  40. android:layout_width="match_parent"
  41. android:layout_height="wrap_content"
  42. android:orientation="horizontal"
  43. >
  44. <TextView
  45. android:layout_width="wrap_content"
  46. android:layout_height="wrap_content"
  47. android:text="第一控件" />
  48. <TextView
  49. android:layout_width="wrap_content"
  50. android:layout_height="wrap_content"
  51. android:text="第二控件" />
  52. </LinearLayout>
  53. </LinearLayout>

19.相对布局(重点)

  1. 各个组件都是按照相对位置来拜访。
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:paddingBottom="@dimen/activity_vertical_margin"
  7. android:paddingLeft="@dimen/activity_horizontal_margin"
  8. android:paddingRight="@dimen/activity_horizontal_margin"
  9. android:paddingTop="@dimen/activity_vertical_margin"
  10. tools:context=".MainActivity" >
  11. <ImageView
  12. android:layout_width="80dip"
  13. android:layout_height="80dip"
  14. android:src="@drawable/ic_launcher"
  15. android:id="@+id/iv"/>
  16. <TextView
  17. android:layout_width="match_parent"
  18. android:layout_height="wrap_content"
  19. android:text="王安全出轨事件曝光王安全出轨事件曝光王安全出轨事件曝光王安全出轨事件曝光王安全出轨事件曝光"
  20. android:singleLine="true"
  21. android:layout_toRightOf="@id/iv"
  22. android:id="@+id/tv_title"
  23. android:textSize="16sp"
  24. />
  25. <TextView
  26. android:layout_width="match_parent"
  27. android:layout_height="wrap_content"
  28. android:text="王安全出轨王安全出轨王安全出轨王安全出轨王安全出轨王安全出轨王安全出轨王安全出轨王安全出轨王安全出轨王安全出轨王安全出轨王安全出轨王安全出轨"
  29. android:layout_toRightOf="@id/iv"
  30. android:maxLines="4"
  31. android:layout_below="@id/tv_title"
  32. android:textSize="12sp"
  33. />
  34. </RelativeLayout>

20、嵌套布局

  1. 线性布局与相对布局相互嵌套。
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:paddingBottom="@dimen/activity_vertical_margin"
  7. android:paddingLeft="@dimen/activity_horizontal_margin"
  8. android:paddingRight="@dimen/activity_horizontal_margin"
  9. android:paddingTop="@dimen/activity_vertical_margin"
  10. tools:context=".MainActivity" >
  11. <Button
  12. android:layout_width="wrap_content"
  13. android:layout_height="wrap_content"
  14. android:text="按钮"
  15. android:id="@+id/bt"/>
  16. <LinearLayout
  17. android:layout_width="match_parent"
  18. android:layout_height="wrap_content"
  19. android:orientation="horizontal"
  20. android:layout_toRightOf="@id/bt"
  21. >
  22. <TextView
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:text="王安全出轨事"
  26. android:id="@+id/tv_title"
  27. />
  28. <TextView
  29. android:layout_width="wrap_content"
  30. android:layout_height="wrap_content"
  31. android:text="描述描述描述描述描述"
  32. android:background="#FF0000"
  33. android:id="@+id/tv_desc"
  34. />
  35. </LinearLayout>
  36. </RelativeLayout>


来自为知笔记(Wiz)


附件列表

     

    第1天