温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Android Studio -- Installation and useage

发布时间:2020-07-28 13:27:41 来源:网络 阅读:507 作者:xjhznick 栏目:移动开发

    下载安装Android Studio

    Android Studio 中文社区

1.Install Android Studio

    Download Android Studio and Launch the downloaded EXE file.

    Needs JDK 6 or greater.

安装JDK:

JAVA_HOME指明JDK安装路径,就是刚才安装时的路径C:\Program Files\Java\jdk1.8.0_05,此路径下包括lib,bin,jre等文件夹(此变量最好设置,因为以后运行tomcat,eclipse,ant 等都需要使用此变量)
PATH

Path使得系统可以在任何路径下识别java命令,设为:

%JAVA_HOME%\bin;%JAVA_HOME%\jre\bin

CLASSPATH

CLASSPATH为java加载类(class or lib)路径,只有类在classpath中,java命令才能识别,设为:

.;%JAVA_HOME%\lib;%JAVA_HOME%\lib\tools.jar

(要加.表示当前路径) 
%JAVA_HOME%就是引用前面指定的JAVA_HOME。

    >javac -version

Android Studio -- Installation and useage

2.Adding SDK Packages

    Android SDK Manger: Tools > Android > SDK Manager(From Android Studio)

3.Recommended Packages:

    1)SDK Tools(Required): Keep this up to date.

    2)SDK Platform-tools(Required): Must install this package when first install the SDK.

    3)SDK Platform(Required): Recommend use the latest version as your build target. To run your app on older version, you must build against the latest version in order.

    Get to know minSDKversion vs. Build Target, refer to uses-sdk-element <uses-sdk>

    What API level should I target?

    4)System Image(Recommended):Using the Emulator 

    It is recommended to download system p_w_picpaths of all versions of Andorid your app supports and test your app running on them with the emulator.

    5)Android Support(Recommended): Includes a static library that supports older versions.

    6)SDK Samples(Recommended): The source code you can use to learn about Android or reuse in your own app. One sample package for one Android platform version.

Tip: For easy access to the SDK tools from a command line, add the location of the SDK's tools/ and platform-tools to your PATH environment variable.

附:

A Problems connecting to the SDK repository

使用SDK Manager下载packages遇到connection problem,可以使用http代替https。

  1. With the Android SDK Manager window open, select "Settings" in the left pane.

  2. On the right, in the "Misc" section, check the checkbox labeled "Force https://... sources to be fetched using http://..."

  3. Click Save & Apply.

B Adding New Sites

在第三方设备制造商的Android设备使用提供的第三方API库,安装他们的Android SDK add-on。如果SDK add-on repository 在他们的网站上,则在SDK Manager上添加他们的site:

  1. Select Available Packages in the left panel.

  2. Click Add Add-on Site and enter the URL of the repository.xml file. Click OK.

Any SDK packages available from the site will now be listed under a new item named User Add-ons.


Building Your First App

1.Creating an Android Project



    

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI