当前位置 : 主页 > 手机开发 > android >

adk安装并构建首个应用

来源:互联网 收集:自由互联 发布时间:2021-06-11
SDK下载地址(3.5.1 for Windows 64-bit):https://developer.android.google.cn/studio Offline components: Running Intel® HAXM installer HAXM installation failed. To install HAXM follow the instructions found at: https://software.int

SDK下载地址(3.5.1 for Windows 64-bit):https://developer.android.google.cn/studio

Offline components:

 

Running Intel® HAXM installer
HAXM installation failed. To install HAXM follow the instructions found at: https://software.intel.com/android/articles/installation-instructions-for-intel-hardware-accelerated-execution-manager-windows

Downloading Intel HAXM

https://github.com/intel/haxm/releases/tag/v7.5.2

 

开始之前,您应该了解有关 Android 应用的两个基本概念:

应用提供多个入口点

Android 应用都是将各种可单独调用的组件加以组合构建而成。例如,Activity 是一种用来提供界面的应用组件。

“主”Activity 是用户点按您的应用图标时启动的 Activity,但您可以将用户从其他位置(例如,从通知中,甚至从其他应用中)直接转到其他 Activity。

其他组件(如广播接收器和服务)也允许您的应用在没有界面的情况下执行后台任务。

构建您的首个应用后,请参阅应用基础知识,以详细了解其他组件。

应用提供多个入口点

Android 应用都是将各种可单独调用的组件加以组合构建而成。例如,Activity 是一种用来提供界面的应用组件。

“主”Activity 是用户点按您的应用图标时启动的 Activity,但您可以将用户从其他位置(例如,从通知中,甚至从其他应用中)直接转到其他 Activity。

其他组件(如广播接收器和服务)也允许您的应用在没有界面的情况下执行后台任务。

构建您的首个应用后,请参阅应用基础知识,以详细了解其他组件。

 

Android Studio中运行按钮不出来的解决方案

https://blog.csdn.net/qq_21891743/article/details/88355802

创建 Android 项目

  1. 在 Welcome to Android Studio 窗口中,点击 Start a new Android Studio project。 分享图片

    或者,如果您已打开某个项目,请依次选择 File > New > New Project

  2. 在 Choose your project 窗口中,选择 Empty Activity
  3. 点击 Next
  4. 在 Configure your project 窗口中,输入以下值:
    • Name:“My First App”
    • Package name:“com.example.myfirstapp”
    • 选中 Use AndroidX artifacts 旁边的框。
    • 您可能想要更改项目位置。
    • 让其他选项保持原样。

    如果您希望采用 Java 编写您的应用,请从 Language 下拉列表中选择 Java

  5. 点击 Finish
网友评论