Android 第一行代码笔记(1)

文章目录

安卓概貌

安卓系统架构

  1. Linux内核层

    为安卓提供各种硬件底层驱动

  2. 系统运行库

    SQLite数据库 OpGL1|ES(3D绘图) Webkit2浏览器内核支持 安卓运行时库 Dalvik3虚拟机

  3. 应用框架层

    提供构建应用程序时可能用到的API

  4. 应用层

    用户安装的应用

安卓架构图

安卓架构资料

安卓发布版本

Android版本名称Code nameAndroid版本版本发布时间对应API
(no code name)1.02008年9月23日API level 1
(no code name)1.12009年2月2日API level 2
Cupcake1.52009年4月17日API level 3,NDK 1
Donut1.62009年9月15日API level 4,NDK 2
Eclair2.0.12009年12月3日API level 6
Eclair2.12010年1月12日API level 7,NDK3
Froyo2.2.x2010年1月12日API level 8,NDK 4
Gingerbread2.3 – 2.3.22011年1月1日API level 9,NDK5
Gingerbread2.3.3 – 2.3.72011年9月2日API level 10
Honeycomb3.02011年2月24日API level 11
Honeycomb3.12011年5月10日API level 12,NDK 6
Honeycomb3.2.x2011年7月15日API level 13
Ice Cream Sandwich4.0.1 – 4.0.22011年10月19日API level 14,NDK 7
Ice Cream Sandwich4.0.3 – 4.0.42012年2月6日API level 15,NDK 8
Jelly Bean4.12012年6月28日API level 16
Jelly Bean4.1.12012年6月28日API level 16
Jelly Bean4.2-4.2.22012年11月API level 17
Jelly Bean4.32013年7月API level 18
KitKat4.42013年7月24日API level 19
Kitkat Watch4.4W2014年6月API level 20
Lollipop(Android L)5.0/5.12014年6月25日API level 21/API level 22
Marshmallow(Android M)6.02015年5月28日API level 23
Nougat(Android N)7.02016年5月18日API level 24
Nougat(Android N)7.12016年12月API level 25
Oreo(Android O)8.02017年8月22日API level 26
Oreo(Android O)8.12017年12月5日API level 27
Pie (Android P)9.02018年8月7日API level 28

安卓四大组件

  • 活动(Activity)
  • 服务(Service)
  • 广播接收器(Broadcast Receiver)
  • 内容提供器(Content Provider)

Hello World 项目中app目录结构

app

  • build 存放编译时产生的存放目录
  • libs 存放第三方java包
  • androidTest 存放编写测试用例
  • java 存放java代码
  • res 项目资源目录
  • AndroidManifest.xml Android 项目配置文件

HelloWorld项目如何运行的

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.helloworld" >

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme" >
        <activity android:name=".MainActivity" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

本段代码会对HelloWorldActivity 这个活动进行注册, 没有在AndroidManifest.xml里注册活动不能使用。


 <activity android:name=".MainActivity" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

<action android:name="android.intent.action.MAIN" /> 和 <category android:name="android.intent.category.LAUNCHER" /> 表示HelloWorld是项目的主活动, 在点击手机应用图标时, 首先启动这个活动。

MainActivity.java

package com.example.helloworld;

import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
}

Activity

setContentView()方法,用以引入当前活动的activity_main.xml布局 。位置(res/layout)

布局文件activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

TextView 是Android系统提供的一个控件,用于布局中显示文字

res文件夹目录结构

在这里插入图片描述

  • 所用drawable开头目录用于存放图片
  • 所有mipmap开头目录用于存放应用图标
  • values开头目录用于存放字符串, 样式, 颜色等配置
  • layout 目录用于存放布局文件

注意: 后缀为: -hdpi -xhdpi -xxhdpi 是安卓适应不同分辨率所做区分的。

-xxhdpi 是安卓适应不同分辨率所做区分的。

strings.xml

<resources>
    <string name="app_name">HelloWorld</string>
</resources>

这里定义了一个应用程序名的字符串, 对他的应用有两种方式

  • 在代码中通过R.layout.activity_main可以获得该字符串的引用
  • 在 XML 中通过@string/activity_main可以获得该字符串的引用

详解build.gradle

build.gradle是项目构建文件, Android Studio采用Gradle[^4]来构建项目。它使用一种基于Groovy的特定领域语言(DSL)来声明项目设置,目前也增加了基于Kotlin语言的kotlin-based DSL,抛弃了基于XML的各种繁琐配置。

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    //闭包
    repositories {
        google()
        //代码仓库托管
        jcenter()
        
    }
    dependencies {
        //引入构建Android项目插件
        classpath 'com.android.tools.build:gradle:3.5.3'
        
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
        
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

app 目录下的build.gradle

//应用插件
// apply plugin的值有两种
//com.android.application (应用程序模块)
//com.android.library(库模块)
//
apply plugin: 'com.android.application'

android {
    // Android SDK 版本
    compileSdkVersion 29
    //构建工具版本
    buildToolsVersion "29.0.3"
    //项目的细节配置
    defaultConfig {
        //项目包名
        applicationId "com.example.helloworld"
        //项目所兼容最低安卓版本
        minSdkVersion 15
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    //用于指定生成安装文件的相关配置
    buildTypes {
        release {
            //用于指定是否对项目进行混淆防止破解·
            minifyEnabled false
            //指定混淆规则
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}

//项目依赖关系
dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.0'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
}

Android Studio 项目依赖方式:

  • 本地依赖:可以对本地的jar包或目录添加依赖关系
  • 库依赖:对项目中的库添加依赖关系
  • 远程依赖: 对代码库上的开源项目添加依赖关系

日志工具使用

Android中的日志工具类是Log(android.util.Log),这个类中提供了如下5个日志打印工具:Log.v() ,Log.d() ,Log.i() ,Log.w() ,Log.e() 。按照日志级别从高到低为ERROR, WARN, INFO(信息), DEBUG, VERBOSE(冗长)。

下面是对各种日志级别的输出介绍:

  1. Log.v 的输出颜色为黑色的,输出大于或等于VERBOSE日志级别的信息
  2. Log.d的输出颜色是蓝色的,输出大于或等于DEBUG日志级别的信息
  3. Log.i的输出为绿色,输出大于或等于INFO日志级别的信息
  4. Log.w的输出为橙色, 输出大于或等于WARN日志级别的信息
  5. Log.e的输出为红色,仅输出ERROR日志级别的信息.

调用日志打印方法

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        //调用Log.d()
        Log.d("MainActivity ", "HRLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL");
    }
}

Log.d()参数: tar:一般传入当前类名, msg:传入打印信息


  1. OpGL ↩︎

  2. webkit ↩︎

  3. Dalvik ↩︎

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值