本文作者:qiaoqingyi

as怎么导入源码(as导入github项目)

qiaoqingyi 2023-04-15 575

本篇文章给大家谈谈as怎么导入源码,以及as导入github项目对应的知识点,希望对各位有所帮助,不要忘了收藏本站喔。

本文目录一览:

如何使用Eclipse导入并运行源码

1.选择菜单“文件/新建/项目”,选择“Java项目”,弹出“创建Java项目”对话框。

2.在“创建Java项目升尘”中输入“项目名”,项目名可辩猜以为任意名字,不必和main类的名字一样。这里假设为“Notepad”。

3.在“内容”中有两个单选按携笑型钮,视你的需要来使用。其中“在工作空间中创建新项目”会在你的工作空间中创建一个新目录,目录名与项目名一致;

4.“从现有资源创建项目”可以在源码所在目录中直接编译运行,生成的class文件也会存放在源码目录中。

5.run as

as怎么导入源码(as导入github项目)

android studio 怎么导入magicindicator

请按照如下方法操作即可:

1. 使用 maven 导入。

1) 在最顶层的Build.gradle 中添宏游樱加如下代码:

buildscript {

repositories {

maven { url "" }

mavenCentral()

}

dependencies {

classpath 'com.android.tools.build:gradle:0.12.+'

}

}

allprojects {

repositories {

maven { url "" }

mavenCentral()

}

}

2) 在app’s的build.gradle添加compile 'com.viewpagerindicator:library:2.4.1',

以后想添加什么第三方的库,只需要在 中搜索,然后添加在第2中就行了。

2. 下载好源码,添加已经下载好的源码。

1)下载 source code

2) 在你的 Android Studio Project: File - Project Structure - add (+ symbol) - Import Existing Project,导入library文件夹而不是整个工程 (leave the import options as Android Studio suggests)。

3) 按步骤设置(SDK 版本),然后点击下一步。

4) 在你app的build.gradle中添加依赖 dependencies { compile project ( ':library' ) }。

注意:如果项目中已经存在了support-v4,需要删除,因为添加的 Android-ViewPagerIndicator 会包含这个库。在一个工程中不能有两个磨闭这样的库(工程会共用库中的这个jar)蔽丛。如果 Android-ViewPagerIndicator Library 中的support-v4 不能满足你的要求,那只能用第2种方法,下载好后,把你要的support-v4替换Library文件夹中的,然后按步骤进行即可。

AS怎么导入第三方库文件

下面分两种情况介绍一下如何导入第三方类库。

1、戚备带对于jar的类库,非常简单,只要在项目根目录下新建一个libs目录,然后高芦把jar复制滚和进去,在jar上点击右键,选择Add

as

library,即可完成依赖的添加。

android studio源码怎么使用

Android Studio开发/调试Android源码的方法如下:

1、修改Android Studio(以下简称AS)的内存配团明置

2、配置AS的JDK、SDK

3、生成导入塌坦告AS所需配置文件(*.ipr)

4、解决源码中跳转错误问题

5、可以通过给刚导入的工程在'Modules'中添加'Android Framework'来信肢让AS将它作为一个Android工程,从而方便我们调试代码.

如何用 Intellij 导入 Android 源码?

针对定制源码或者原生源码来说,这些准备步骤都是必须的,没必要再强调了。

2-2 配置导入及使用

2-2-1 编译源码idegen模块及生成AS配置文件(*.ipr)

在开始编译idegen模块前,你一定知道需要先全局编译出out目录及相关文件吧,这个不再过多说了,我们通过如下命令编译idegen模块:

mmm development/tools/idegen/1

这行命令的意思是编译idegen这个模块项目,然后生成idegen.jar文件(不信你自己去查看这个模块的Android.mk的目标吧,不多解释)。运行完以后如果看到如下信息则说明编译OK:

......

#### make completed successfully (7 seconds) ####12

接着执行如下脚本:

development/tools/idegen/idegen.sh1

这行命令的意思是在根目录生成对应的android.ipr、android.iml IEDA工程配置文件。等待片刻得到类似如下信息说明OK:

Read excludes: 21ms

Traversed tree: 194799ms12

通过如上操作我们就完成了基本的源码配置工作。

2-2-2 导入Android Studio前的一些客户化操作

大家都知租卖道使用Eclipse倒入源码很慢,Android Studio导入源码时也慢,所以建议修改android.iml文件(将自己不用的代码去掉),然后再导入Studio。

就像下面摘取的android.iml文件1887行开始的这些一样:

sourceFolder url="" isTestSource="true"/

sourceFolder url="" isTestSource="false"/

excludeFolder url=""/

excludeFolder url=""/

excludeFolder url=""/

excludeFolder url=""/

excludeFolder url=""/

excludeFolder url=""/

excludeFolder url=""/

excludeFolder url=""/

excludeFolder url=""/

excludeFolder url=""/

excludeFolder url=""/

excludeFolder url=""/1234567891011121314

我们可以仿照上面这段代码的excludeFolder url=""/写法一样过滤掉不需要的内容,这样在导入时就会快很多。

也可以通过Android Studio的Project Stucture 打开左侧Modules,然后将右侧Sources中一些目录Excluded掉。

2-2-3 使用Android Studio导入源码工程

有了如上的这些操作以后,我们打开Android Studio,然后选择打开一个现有的Android Studio项目,然后选择打开源码根目录下的android.ipr文件,然后出现如图一样的索引即可等竖型含待余笑导入就行:tu

到目前为止我们就可以方便的使用Android Studio查看源码啦。如下图所示:

吊不屌!!!

2-3 使用技巧

上图我们看见了,可以通过Android Studio搜索整套源码的代码了。但是这时候如果你打开一个Service.java类,然后把鼠标放在其中任意方法的Intent参数上按住CTRL+鼠标左键跳转到Intent类你会发现跳转过去的是一个Intent.class文件,为啥呢?因为他跳转的是你的默认SDK中的jar内部的class文件。既然要修改查看整套源码,这么跳转得多蛋疼啊,所以我们需要配置让其能跳转到Intent.java文件,具体做法如下:

首先删掉依赖中的所有依赖,只保留下图中没被选中的那两个(当然你可以选择保留一些你用到的其他jar),如下:

接着点击加号的JARs or directories将你源码的frameworks及external和你用到的其他跳转目录添加到依赖中,然后apply即可。

这时候我们在像上面一样打开Service.java跳转Intent,你会发现像下图一样直接跳转到你源码路径下的Intent.java文件了,如下:

到此对于平时只是查看源码的人来说已经够用了。

3 总结

俗话说工欲善其事必先利其器,你会发现使用Android Studio比Eclipse和Source Insight都好很多(当然了,SubText还是很强大的),无论是代码提示还是跳转、还是Python Shell等插件支持等都很强大,慢慢体验吧。

顺带说一句,Google的野心真的很大,看来Android Studio即将要被他们打造为全能IDE了。

4 附加README

附上原版的英文README文档,英语高手直接看这里就行:

IDEGen automatically generates Android IDE configurations for IntelliJ IDEA

and Eclipse. Your IDE should be able to compile everything in a reasonable

amount of time with no errors.

If you’re using IntelliJ…

If this is your first time using IDEGen...

IDEA needs a lot of memory. Add "-Xms748m -Xmx748m" to your VM options

in "IDEA_HOME/bin/idea.vmoptions" on Linux or

"IntelliJ IDEA.app/Contents/Info.plist" on OS X.

Create a JDK configuration named "1.6 (No Libraries)" by adding a new

JDK like you normally would and then removing all of the jar entries

under the "Classpath" tab. This will ensure that you only get access to

Android's core libraries and not those from your desktop VM.

From the project's root directory...

Repeat these steps after each sync...

1) make (to produce generated .java source)

2) development/tools/idegen/idegen.sh

3) Open android.ipr in IntelliJ. If you already have the project open,

hit the sync button in IntelliJ, and it will automatically detect the

updated configuration.

If you get unexpected compilation errors from IntelliJ, try running

"Build - Rebuild Project". Sometimes IntelliJ gets confused after the

project changes significantly.

If you’re using Eclipse…

If this is your first time using IDEGen...

Edit eclipse.ini ("Eclipse.app/Contents/MacOS/eclipse.ini" on OS X) and

add "-Xms748m -Xmx748m" to your VM options.

Configure a JRE named "1.5 (No Libraries)" under "Preferences - Java -

Installed JREs". Remove all of the jar entries underneath "JRE system

libraries". Eclipse will not let you save your configuration unless at

least one jar is present, so include a random jar that won't get in the

way.

From the project's root directory...

Repeat these steps after each sync...

1) make (to produce generated .java source)

2) development/tools/idegen/idegen.sh

3) Import the project root directory into your Eclipse workspace. If you

already have the project open, simply refresh it (F5).

Excluding source roots and jars

IDEGen keeps an exclusion list in the "excluded-paths" file. This file

has one regular expression per line that matches paths (relative to the

project root) that should be excluded from the IDE configuration. We

use Java's regular expression parser (see java.util.regex.Parser).

You can create your own additional exclusion list by creating an

"excluded-paths" file in the project's root directory. For example, you

might exclude all apps except the Browser in your IDE configuration with

this regular expression: "^packages/apps/(?!Browser)".

Controlling source root ordering (Eclipse)

You may want some source roots to come before others in Eclipse. Simply

create a file named "path-precedence" in your project's root directory.

Each line in the file is a regular expression that matches a source root

path (relative to the project's root directory). If a given source root's

path matches a regular expression that comes earlier in the file, that

source root will come earlier in the generated configuration. If a source

root doesn't match any of the expressions in the file, it will come last,

so you effectively have an implicit ".*" rule at the end of the file.

For example, if you want your applications's source root to come first,

you might add an expression like "^packages/apps/MyApp/src$" to the top

of the "path-precedence" file. To make source roots under ./out come last,

add "^(?!out/)" (which matches all paths that don't start with "out/").

android studio 怎么引入dimens

步枯燃骤

准备好没乎虚需要引入的demens.xml文件

把这个文件复制到项目的顷贺app/res/valuse/dimens目录下

引入demens完成

as怎么导入源码的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于as导入github项目、as怎么导入源码的信息别忘了在本站进行查找喔。

阅读
分享