Android基础-01

Android基础-01

1.1G-4G的介绍

2.Android操作系统介绍

3.Android历史介绍

4.Android系统架构(重点)

系统架构的四个层次:

1、应用程序层:自己的开发应用程序都是运行在这一层;
2、框架层:开发应用程序使用的API都在这一层;
3、类库层:基础类库;
4、linux内核:

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

JVM与Dalvik虚拟机之间的区别:

1、JVM加载的是.class文件、Dalvik加载的是.dex;
2、JVM加载数据时使用栈架构、Dalvik使用寄存器;

6.SDKManger的使用

AVD:Android virtual Device;

VGA 480* 640
QVGA 240*320
HVGA 320*480
WQVGA 240*400
FWVGA 480*854
WVGA 480*800
AVD: Android virtual Device

7.模拟器的简介及创建

adb Android debug bridge:安卓调试桥;

8. AVD的创建

9.DDMS介绍

DDMS:

Dalvik Debug Monitor Service Dalvik虚拟机的调试监听服务;
Debug Device Monitor Service 设备的监听服务;
Device Definition Monitor Service 设备定义的监听服务;

10.SDK目录

11.创建HelloWorld

安装的过程:

eclipse运行应用程序时,先去编译工程,打包成一个apk。使用adb把apk文件上传到设备上,设备会自动安装apk,安装完成后自动开启第一个界面。

12.Android目录结构(重点)

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

13.Android的打包过程

14.ADB命令

adb devices  列出所有的设备、连接上已经设备;

adb devices  列出所有的设备

adb shell 挂载到linux的空间 

adb install xxx.apk 如果有多个设备,我们可以指定设备   adb install –s  emulator-5554 D:/xxx.apk

emulator –avd advname  启动模拟器    例如:emulator –avd 2.2 (2.2 为我们创建设备的名称)

mksdcard 20m d:/sdcard.img 创建sdcard

adb pull <remote> <local> 

adb push <local> <remote>

android create avd –name android2.2 –target 8  创建模拟器

ctrl + F11 横竖屏的切换

15.电话拨号器(重点)

步骤:

1、理解需求:
2、参考效果图设计UI界面:
3、写代码:

代码:

布局文件:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity" >

<EditText
     android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/et_phone"
    android:hint="请输入电话号码"
    />

<Button
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
    android:text="拨打"
    android:onClick="call"
    />

</LinearLayout>

MainActivity.java:

package com.itheima.phonecall;

import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.text.TextUtils;
import android.view.View;
import android.widget.EditText;
import android.widget.Toast;

public class MainActivity extends Activity {

    private EditText et_phone;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        //初始化控件
        et_phone = (EditText) findViewById(R.id.et_phone);
    }

    public void call(View view){

        String phone = et_phone.getText().toString().trim();

        if(TextUtils.isEmpty(phone)){
            Toast.makeText(this, "电话号码不能为空", Toast.LENGTH_SHORT).show();
        }else{
            //拨打电话号码
            Intent intent = new Intent();
            //设置 拨打电话的动作
            intent.setAction(Intent.ACTION_CALL);
            //设置数据
            intent.setData(Uri.parse("tel://"+phone));
            //调用拨打电话号码的功能
            startActivity(intent);

        }
    }

}

配置文件:

在清单文件中添加权限:
     <uses-permission android:name="android.permission.CALL_PHONE"/>

16.四种点击事件

1、内部类的方法:

(1)在布局文件中定义按钮的ID:
    <Button
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
    android:text="拨打"
    android:id="@+id/bt"
    />
(2)在代码中给按钮添加监听事件:
    private EditText et_phone;
    private Button bt;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        //初始化控件
        et_phone = (EditText) findViewById(R.id.et_phone);
        bt = (Button) findViewById(R.id.bt);

        bt.setOnClickListener(new OnClickListener() {

            //点击按钮之后才会调用这个方法
            @Override
            public void onClick(View v) {
                String phone = et_phone.getText().toString().trim();

                if(TextUtils.isEmpty(phone)){
                    Toast.makeText(MainActivity.this, "电话号码不能为空", Toast.LENGTH_SHORT).show();
                }else{
                    //拨打电话号码
                    Intent intent = new Intent();
                    //设置 拨打电话的动作
                    intent.setAction(Intent.ACTION_CALL);
                    //设置数据
                    intent.setData(Uri.parse("tel://"+phone));
                    //调用拨打电话号码的功能
                    startActivity(intent);

                }

            }
        });
    }

2、自定义一个监听器类:

private class MyListener implements OnClickListener{

@Override
public void onClick(View v) {
    //点击按钮之后才会调用这个方法
        String phone = et_phone.getText().toString().trim();

        if(TextUtils.isEmpty(phone)){
            Toast.makeText(MainActivity.this, "电话号码不能为空", Toast.LENGTH_SHORT).show();
        }else{
            //拨打电话号码
            Intent intent = new Intent();
            //设置 拨打电话的动作
            intent.setAction(Intent.ACTION_CALL);
            //设置数据
            intent.setData(Uri.parse("tel://"+phone));
            //调用拨打电话号码的功能
            startActivity(intent);
        }

}

}

3、在布局文件中给按钮添加一个单击事件的响应方法,然后再中添加一个方法:

布局文件:
    <Button
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
    android:text="拨打"
    android:onClick="call"
    />
代码:
    public void call(View view){

    String phone = et_phone.getText().toString().trim();

    if(TextUtils.isEmpty(phone)){
        Toast.makeText(this, "电话号码不能为空", Toast.LENGTH_SHORT).show();
    }else{
        //拨打电话号码
        Intent intent = new Intent();
        //设置 拨打电话的动作
        intent.setAction(Intent.ACTION_CALL);
        //设置数据
        intent.setData(Uri.parse("tel://"+phone));
        //调用拨打电话号码的功能
        startActivity(intent);

    }
}

4、是activity实现OnClickListener接口,重新onClick方法:

public class MainActivity extends Activity implements OnClickListener{

    private EditText et_phone;
    private Button bt;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        //初始化控件
        et_phone = (EditText) findViewById(R.id.et_phone);
        bt = (Button) findViewById(R.id.bt);

        //添加单击事件的监听器
        bt.setOnClickListener(this);
    }

    //实现接口的方法
    public void onClick(View v) {
        String phone = et_phone.getText().toString().trim();

        if(TextUtils.isEmpty(phone)){
            Toast.makeText(MainActivity.this, "电话号码不能为空", Toast.LENGTH_SHORT).show();
        }else{
            //拨打电话号码
            Intent intent = new Intent();
            //设置 拨打电话的动作
            intent.setAction(Intent.ACTION_CALL);
            //设置数据
            intent.setData(Uri.parse("tel://"+phone));
            //调用拨打电话号码的功能
            startActivity(intent);
    }
}

17.框架布局

框架布局:framelayout: 摆放空间的时候是把第一个空间放到最下面,最后一个控件显示在最上面;

示例:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"

tools:context=".MainActivity" >

<Button
    android:layout_width="300dip"
    android:layout_height="300dip"
    android:background="#ff0000"
    android:text="@string/hello_world" />

<Button
    android:layout_width="200dip"
    android:layout_height="200dip"
    android:background="#00ff00"
    android:text="@string/hello_world" />

 <Button
    android:layout_width="100dip"
    android:layout_height="100dip"
    android:background="#0000ff"
    android:text="@string/hello_world" />
</FrameLayout>

18.线性布局(重点)

线性布局的方向有两种:垂直、水平; 垂直:把每个控件摆放成一行; 水平:在同一行摆放所有的控件;

示例:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
tools:context=".MainActivity" >

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="#ff0000"
    android:text="@string/hello_world" />

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="#00ff00"
    android:text="@string/hello_world" />

 <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="#0000ff"
    android:text="@string/hello_world" />
</LinearLayout>

19.相对布局(重点)

相对布局:其他控件在摆放的时候都是参考某个控件的相对位置来摆放;

示例:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="#ff0000"
    android:text="@string/hello_world"
    android:id="@+id/first_bt"/>

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="#00ff00"
    android:layout_toRightOf="@id/first_bt"
    android:text="@string/hello_world"
    android:id="@+id/second_bt" />

 <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="#0000ff"
    android:layout_below="@id/second_bt"
    android:text="@string/hello_world" />

</RelativeLayout>
时间: 2024-10-10 20:30:52

Android基础-01的相关文章

Android基础01 快速入门 &amp; 布局

Android基础01 快速入门 & 布局 01.01  手机制式 第一代模拟制式手机(1G):1G就是大哥大,手机类似于简单的无线电双工电台,通话是锁定在一定频率,所以使用可调频电台就可以窃听通话.   第二代GSM.CDMA等数字手机(2G):手机使用PHS,GSM或者CDMA这些十分成熟的标准,具有稳定的通话质量和合适的待机时间,支持彩信业务的GPRS和上网业务的WAP服务,以及各式各样的Java程序等. 第三代移动通信技术(3G):3G,是英文3rd Generation的缩写,指第三代

Android基础01

Android 系统架构: 1.Aplication层 应用层 (浏览器  QQ 微信  通讯录 )  JAVA程序开发 2.Aplication FrameWork应用框架层 (JAVA+JNI   java native interface   JNI是Java语言和底层LINUX C语言的调度器 ) 提供接口和类:包含很多模块 1. Activit (活动 ,四大组件之一)  2.Window Manager (对话框,分辨率) 3.Content provider(内容提供者,四大组件之

Android基础入门教程——1.1 背景相关与系统架构分析

Android基础入门教程--1.1 背景相关与系统架构分析 1.Android背景与当前的状况 Android系统是由Andy Rubin创建的,后来被Google收购了:最早的版本是:Android 1.1版本 而现在最新的版本是今年5.28,Google I/O大会上推出的Android M,有趣的是Android系统的命名都是以点心来命名的,下述表是15个Android版本名称,对应API号以及发布时间! 系统版本名称 API版本号 发布时间 Android 1.5:Cupcake:纸杯

安卓基础01

安卓基础01 SDK System images 这是在创建模拟器时需要的system image,也就是在创建模拟器时CPU/ABI项需要选择的,下载并解压后,将解压出的整个文件夹复制或者移动到 your sdk 路径/system-images文件夹下即可, 如果没有 system-images目录就先 创建此文件夹,然后打开SDK Manager,打开Tools(工 具)菜单选择Options(选项)菜单项打开Android SDK Manager Setting对话框,点击Clear C

《Android基础》课程指导

<Android编程权威指南>是一本好书,也是我们<Android基础>课程教材. 课程鼓励学生使用Android Studio,但这本书使用的开发工具是ADT.为了帮助学生更好的使用教材,我把书中部分章节用Android Studio重新实现了一遍.并对一些截图和案例讲解做了替换和微调. 为了便于索引,本文的结构目录与教材基本一致.未做改变的章节或大段内容,仅保留代码片段,文字不再重复描述.请参考教材,理解和完成对应章节的内容. 此博客用来记录"重新实现"书中

android基础知识

1. 前言 1.1. 什么是3G.4G Ÿ 第三代移动通信技术(3rd - Generation),速率一般在几百Kbps,较之前的2G和2.5G在数据传输速度上有很大提升. Ÿ 第四代移动通信技术(4th - Generation),速度可达到100Mbps以上,几乎可以满足人们的所有传输数据的需求. Ÿ 目前主流的3G技术标准有三种: WCDMA:全球80%以上的3G网络都是采用此种制式.中国联通运营.186 CDMA2000:目前日韩及北美使用较多.中国电信运营. 189 TD-SCDMA

Android基础知识点总结

Android基础知识点总结 在学习了很长一段时间的Android基础内容,如果不做及时的复习,那么后面的项目学习起来可能就没那么顺利了,并且复习也是一件很愉快的事.古人有云:"学而时习之不亦说乎",应该就是这个道理. ~本文大纲~ Android基础知识点总结 Day01 01Android系统中我们常用的4种数据存储方式 02获取手机内存空间大小 03XML文件的生成和解析 GET新技能 Day02 SQLiteOpenHelper的基本用法 数据库事务 Listview的简单优化

Android逆向-Android基础逆向(2-2)

[toc] #0x00 前言##不知所以然,请看Android逆向-Android基础逆向(1)Android逆向-Android基础逆向(2)##以及java系列:Android逆向-java代码基础(1)Android逆向-java代码基础(2)Android逆向-java代码基础(3)Android逆向-java代码基础(4)Android逆向-java代码基础(5)Android逆向-java代码基础(6)Android逆向-java代码基础(7)Android逆向-java代码基础(8

Android基础入门教程——10.12 传感器专题(3)——加速度-陀螺仪传感器

Android基础入门教程--10.12 传感器专题(3)--加速度/陀螺仪传感器 标签(空格分隔): Android基础入门教程 本节引言: 本节继续来扣Android中的传感器,本节带来的是加速度传感器(Accelerometer sensor)以及 陀螺仪传感器(Gyroscope sensor),和上一节的方向传感器一样有着x,y,z 三个轴, 还是要说一点:x,y轴的坐标要和绘图那里的x,y轴区分开来!传感器的是以左下角 为原点的!x向右,y向上!好的,带着我们的套路来学本节的传感器吧