第一章 Android初体验【Android基础学习】
  • 前言
  • 版权
  • 推荐
  • 开源
  • Android基础学习
  • 第一章 Android初体验
  • 1-1 Android开发概述
  • 1-2 Android开发工具
  • 1-3 第一个Android应用
  • 最后


前言

2024-5-29 21:41:04


推荐

 【天哥】Android开发视频教程最新版 Android Studio开发

图片资源来自:
  https://github.com/jinjungle/skypan-yes-code

开源

日星月云 / 安卓基础学习 https://gitee.com/jsss-1/android-basic-learningjsss-1 / android-basic-learning https://github.com/jsss-1/android-basic-learning

Android基础学习

第一章 Android初体验

1-1 Android开发概述

  • Android是Google开发的操作系统
  • Android开发是移动应用开发的表现形式之一
    Android、iOs、H5 App、Native+H5、RN、ionic、MUI…

第一章 Android初体验【Android基础学习】_Android

1-2 Android开发工具

Eclipse

  • 下载安装JDK
  • 为什么使用Android Studio ?
    Android Studio是Google自己推出的Android集成开发工具
    且Google已经停止对Eclipse的支持。

1-3 第一个Android应用

运行第一个程序

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);
    }
}
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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=".MainActivity">

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

</LinearLayout>
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.

最后

迎着日光月光星光,直面风霜雨霜雪霜。