1. Android入门

Android系统架构

Android系统:四层架构、五块区域

1. Linux内核层 Linux Kernel:为Android设备的硬件提供了底层驱动

2. 系统运行库层 Libraries:为Android系统提供特性支持,如 (SQLite) 数据库支持、(OpenGL|ES) 3D绘图支持、(Webkit) 浏览器内核支持等;也包括了Android运行时库,提供了一些核心库允许开发者使用Java编写应用。也包含了Dalvik虚拟机,使得每一个Android应用都能运行在独立的进程当中。相对于JVM而言,Dalvik针对手机内存、CPU等做了优化。

3. 应用框架层 Application Framework:提供了构建应用程序时可能用到的API

4. 应用层 Application:安装在手机上的应用程序

Android系统的发展:https://developer.android.com/about/dashboards/index.html

Android应用开发特色:

四大组件:

活动 (activity):在应用中看得到的东西

服务 (Service):后台运行(退出应用仍可继续运行)

广播接收器 (Broadcast Receiver):接收来自其他应用的广播消息(如电话、短信等)、或发出广播消息

内容提供器 (Content Provider):应用程序之间共享数据(如读取电话簿中的联系人等)

系统控件:易于开发者编写界面

SQLite数据库:嵌入式关系型数据库(提供API)

地理位置定位:LBS

多媒体:可在应用程序中控制音乐、视频、录音、拍照、闹铃等

传感器:加速度传感器、方向传感器等

开发环境搭建 + Hello World:

https://developer.android.com/training/basics/firstapp/creating-project.html

1. download and install Android Studio;

https://classroom.udacity.com/courses/ud808/lessons/4216368924/concepts/43072785890923

2. Start a new Android Studio project:name, company domain;

3. Empty Activity

4. Open the project window (view -> tool windows -> project) and select Android View

5. In the project window

app > java > com.example.myfirstapp > MainActivity.java: This is the main activity (the entry point for your app). When you build and run the app, the system launches an instance of this Activity and loads its layout.

app > res: 在项目中使用的所有资源:drawable目录:图片;layout目录:布局;values目录:字符串

app > res > layout > activity_main.xml: This XML file defines the layout for the activity's UI. It contains a TextView element with the text "Hello world!".

app > manifests > AndroidManifest.xml: The manifest file describes the fundamental characteristics of the app and defines each of its components. 是整个Android项目的配置文件,所有四大组件都需要在这注册。还有应用的权限、兼容版本等设置。

Gradle Scripts > build.gradle: You'll see two files with this name: one for the project and one for the "app" module. Each module has its own build.gradle file, but this project currently has just one module. You'll mostly work with the module's build.gradle file to configure how the Gradle tools compile and build your app. For more information about this file, see Configure Your Build.

Error Occurs:

Error:(1, 1) A problem occurred evaluating project ':app'.
> java.lang.UnsupportedClassVersionError: com/android/build/gradle/AppPlugin : Unsupported major.minor version 52.0

查询:https://stackoverflow.com/questions/37466744/android-studio-continues-to-get-a-unsupported-major-minor-version-52-0

尝试1:File -> Invalidate caches and restart;无用

尝试2:File -> Project Structure -> SDK Location -> use embedded JDK/ set the right path 解决

6. Run on the emulator

Create an Android Virtual Device (AVD) definition. -- specifies the characteristics of the emulation device

Launch AVD: tools -> Android -> AVD Manager

Create Virtual Device -> Select Hardware (Pixel chosen here) -> System Image (Lollipop here)-> Finish

Select the device created, launch AVD in the emulator.

Close the AVD Manager window, in the Project window -> app module -> Run -> Select Deployment Target

源码分析:

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.shenglin.myfirstapp"> <application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".HelloWorldActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application> </manifest>
android:icon="@mipmap/ic_launcher"定义了app的icon

<activity>...</activity>为对HelloWorldActivity活动的注册。

intent-filter中的<action android:name="android.intent.action.MAIN" />和<category android:name="android.intent.category.LAUNCHER" />表示是该程序的主活动(点击应用图标首先启动的活动)

HelloWorldActivity.java

public class HelloWorldActivity extends AppCompatActivity {

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

extends AppCompatActivity

onCreate():活动被创建时必定要执行的方法。

但是,helloword字样在哪里呢?

逻辑和视图分离:在布局文件中编写界面,在活动中引入

setContentView(R.layout.activity_main); :给当前活动引入activity_main的布局

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.shenglin.myfirstapp.HelloWorldActivity"> <TextView
android:layout_width="228dp"
android:layout_height="72dp"
android:text="Hello world!"
android:textAlignment="center"
android:textSize="30sp"
android:textStyle="bold"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.5"
tools:layout_editor_absoluteX="72dp" /> </android.support.constraint.ConstraintLayout>

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

values/strings.xml

<resources>
<string name="app_name">My First App</string>
</resources>

Android不推荐在程序中对字符串进行硬编码,推荐将字符串定义在res/values/string.xml中,然后在布局文件或代码中引用

引用格式:在xml中:"@string/var_name";在代码中:R.string.var_name(string could also be drawable or layout)

这里的"app_name"即为string_name; 值"My First App"即为string_value(在AndroidManifest.xml被引用)

User Interface:

Using Android Studio Layout Editor: create a layout, including a text box and a button.

The user interface is built using a hierachy of layouts (ViewGroup objects: invisible containers) and widgets (View objects: UI components).

Component Tree window on the botton-left side shows the hierachy of layout.

Start the implementation:

Preparation:

Open the layout editor: app/res/layout/activity_main.xml

Turn on Show Constraints (by clicking the eye button)

Turn off Autoconnect (next to the eye button)

Click Default Margins (8 at the moment) and change it to 16

Choose Device in Editor (the mobile shape button) and select the one you choose.

Clear the layout (delete TextView in the Component Tree window)

Add a text box:

Drag and drop a text->plain text into the design editor

For the plain text widget, it has squares for resizing and circles for setting constraints

Add constraints: 16dp from the both the top and the left of the layout

Add a button:

Drag and drop a widgets->button into the desing editor

Add a constraint to the right side of the plain text box

Click the button, click the Baseline Constraint (appears below the selected widget), constraint it to the text box baseline

Change displayed text:

app/res/values/strings.xml

click Open Editor -> opens the Translations Editor (easy to use)

add two key-value pairs: edit_message: "Enter a message"; button_send:"Send"

Now go back to activity_main.xml

choose the widgets, set the hint property as (Pick a Resource) @string/edit_message; and delete the value for the text property.

so does the button.

Start Another Activity

Create an method to response to the button:

HelloWorldActivity.java

add a method called sendMessage(View view);  (the method must be public void with a single View as the parameter)

an error pops out -- opt+enter=quick fix -- import class

activity_main.xml

select button, Properties -> onClick property -> sendMessage[HelloWorldActivity]

--> now when the buttons is tapped, the system calls the sendMessage().

Intent:

An object that provides runtime binding between separate components, such as two activities.

In this case, the intent starts another activity

HelloWorldActivity.java

add a constant

public static final String EXTRA_MESSAGE = "com.example.matt.myfirstapp.MESSAGE";

write sentMessage()

Intent intent = new Intent(this, DisplayMessageActivity.class);
EditText editText = (EditText) findViewById(R.id.editText);
String message = editText.getText().toString();
intent.putExtra(EXTRA_MESSAGE, message);
startActivity(intent);

the intent constructor takes two activities as the parameters

intent.putExtra() adds the message (message = editText.getText().toString()) to the intent.

the intent carrys data types as key-value pairs called extras (key is the public constant EXTRA_MESSAGE, note: using your app's package name as a prefix is a good way to ensure the keys are unique, in case your app interacts with other apps.

startActivity() starts an instance of the DisplayMessageActivity specified in the constructor of intent.

Create DisplayMessageActivity

New->Activity->Empty Activity...

auto-finished: create DisplayMessageActivity.java; create activity_display_message.xml; add <activity> in AndroidManifest.xml

Add a text view: activity_display_message.xml

turn on auto-connect

drag and drop a TextView

add a constraint to the top of the layout

and property -> textAppearance blahblahblah

Display the message on the text view:

DisplayMessageActivity.java

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_display_message); // Get the intent that started this activity and extract the string
Intent intent = getIntent();
String message = intent.getStringExtra(HelloWorldActivity.EXTRA_MESSAGE); // capture the layout's TextView and set the string as its text
TextView textView = (TextView) findViewById(R.id.textView);
textView.setText(message);
}

it works now, but one more thing...

Add up navigation:

when the activity is not the main activity, it should provide the navigation so the user can tap the up button in the app bar to return to its logical parent screen.

AndroidManifest.xml

add android:parentActivityName=".HelloWorldActivity"; and the meta-data.

    <activity android:name=".DisplayMessageActivity"
android:parentActivityName=".HelloWorldActivity">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".HelloWorldActivity" />
</activity>
</application>

UniMelb Comp30022 IT Project (Capstone) - 1.Android入门的更多相关文章

  1. UniMelb Comp30022 IT Project (Capstone) - 2.Vuforia in Unity

    2 Vuforia in Unity Tutorial: https://www.youtube.com/watch?v=X6djed8e4n0&t=213s Preparation: Dow ...

  2. Android入门之环境搭建

    欢迎访问我的新博客:http://www.milkcu.com/blog/ 原文地址:http://www.milkcu.com/blog/archives/1376935560.html 原创:An ...

  3. Android入门(一) IDEA上创建Android应用之helloworld

    Android入门(一) IDEA上创建Android应用之helloworld 首先看运行结果: 一.准备工作 下载安装IntelliJ IDEA :我这里用的是2018.2.7 下载安装Genym ...

  4. 【详细】Android入门到放弃篇-YES OR NO-》各种UI组件,布局管理器,单元Activity

    问:达叔,你放弃了吗? 答:不,放弃是不可能的,丢了Android,你会心疼吗?如果别人把你丢掉,你是痛苦呢?还是痛苦呢?~ 引导语 有人说,爱上一个人是痛苦的,有人说,喜欢一个人是幸福的. 人与人之 ...

  5. zxing学习笔记 android入门

    对于刚开始学习android开发的童鞋们来说,若有一个简单而又全面的android工程能来剖析,那就是再好不过了,zxing就是不错得例子.    zxing的源码可以到google code上下载, ...

  6. Android入门教程(四)

    关注我,每天都有优质技术文章推送,工作,学习累了的时候放松一下自己. 本篇文章同步微信公众号 欢迎大家关注我的微信公众号:「醉翁猫咪」 学习Android要掌握Android程序结构,和通信技术,和如 ...

  7. Android入门(十二)SQLite事务、升级数据库

    原文链接:http://www.orlion.ga/610/ 一.事务 SQLite支持事务,看一下Android如何使用事务:比如 Book表中的数据都已经很老了,现在准备全部废弃掉替换成新数据,可 ...

  8. 【转】Xamarin.Android 入门之:Xamarin+vs2015 环境搭建

    Xamarin.Android 入门之:Xamarin+vs2015 环境搭建   一.前言 此篇博客主要写了如何使用搭建xamarin开发的环境,防止我自己万一哪天电脑重装系统了,可以直接看这篇博客 ...

  9. android 入门 006(sqlite增删改查)

    android 入门 006(sqlite增删改查) package cn.rfvip.feb_14_2_sqlite; import android.content.Context; import ...

随机推荐

  1. ssm分页

    pom.xml配置文件中增加相关的插件. <dependency> <groupId>com.github.pagehelper</groupId> <art ...

  2. 【oracle使用笔记1】SQL报的常见错误

    项目中使用最多的就是oracle数据库了,在实际的开发中书写SQL时遇到过许多错误,趁着现在不太忙,把之前遇到的总结一下,以后遇到的会持续更新总结. 1. ORA-00001:违反唯一约束条件 [原因 ...

  3. WebAPI 实现前后端分离的示例

    转自:http://www.aspku.com/kaifa/net/298780.html 随着Web技术的发展,现在各种框架,前端的,后端的,数不胜数.全栈工程师的压力越来越大. 现在的前端的框架, ...

  4. 『ACM C++』 PTA 天梯赛练习集L1 | 007-011

    真的是忙头晕了,学业.ACM打题.班级活动.自学新东西,哇这充实的大学~ ------------------------------------------------L1-007--------- ...

  5. uva_11806_Cheerleaders

    In most professional sporting events, cheerleaders play a major role in entertaining the spectators. ...

  6. df du sync

    df命令用来检查linux系统的磁盘空间占用情况 df [选项] -h:以容易理解的格式输出文件系统分区占用情况,如32KB,120MB,60GB -k:以KB大小单位输出文件系统分区占用情况 -m: ...

  7. SASS实现代码的重用:混合器Mixin、继承

    1. 继承: @extend sass允许一个选择器,继承另一个选择器,通过@extend实现 .class1{ border: 1px solid #333; } .class2{ @extend ...

  8. 【Java】abstract,final,static,private,protected,public的区别

    [abstract]抽象的 1. abstract可以修饰类和成员方法,被abstract修饰的类称为抽象类,被abstract修饰成员方法叫抽象方法.抽象类不一定有抽象方法,但拥有抽象方法的类一定是 ...

  9. [转]MySQL常用字符串函数

    本文转载自:http://www.cnblogs.com/geaozhang/ 是最常用的的一种函数,在一个具体应用中通常会综合几个甚至几类函数来实现相应的应用: 1.LOWER(column|str ...

  10. ES6 imports用法

    import defaultExport from "module-name"; import * as name from "module-name"; // ...