欧美亚洲综合图区在线|天天射天天干国产成卜|99久久免费国产精精品|国产的欧美一区二区三区|日韩中文字幕无码不卡专区|亚麻成人aV极品一区二区|国产成人AV区一区二区三|成人免费一区二区三区视频网站

當(dāng)前位置:首頁 > 軟件開放 > 正文內(nèi)容

as怎么導(dǎo)入源碼(as導(dǎo)入github項(xiàng)目)

軟件開放2年前 (2023-04-15)1256

本篇文章給大家談?wù)刟s怎么導(dǎo)入源碼,以及as導(dǎo)入github項(xiàng)目對應(yīng)的知識點(diǎn),希望對各位有所幫助,不要忘了收藏本站喔。

本文目錄一覽:

如何使用Eclipse導(dǎo)入并運(yùn)行源碼

1.選擇菜單“文件/新建/項(xiàng)目”,選擇“Java項(xiàng)目”,彈出“創(chuàng)建Java項(xiàng)目”對話框。

2.在“創(chuàng)建Java項(xiàng)目升塵”中輸入“項(xiàng)目名”,項(xiàng)目名可辯猜以為任意名字,不必和main類的名字一樣。這里假設(shè)為“Notepad”。

3.在“內(nèi)容”中有兩個單選按攜笑型鈕,視你的需要來使用。其中“在工作空間中創(chuàng)建新項(xiàng)目”會在你的工作空間中創(chuàng)建一個新目錄,目錄名與項(xiàng)目名一致;

4.“從現(xiàn)有資源創(chuàng)建項(xiàng)目”可以在源碼所在目錄中直接編譯運(yùn)行,生成的class文件也會存放在源碼目錄中。

5.run as

android studio 怎么導(dǎo)入magicindicator

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

1. 使用 maven 導(dǎo)入。

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. 下載好源碼,添加已經(jīng)下載好的源碼。

1)下載 source code

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

3) 按步驟設(shè)置(SDK 版本),然后點(diǎn)擊下一步。

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

注意:如果項(xiàng)目中已經(jīng)存在了support-v4,需要刪除,因?yàn)樘砑拥? Android-ViewPagerIndicator 會包含這個庫。在一個工程中不能有兩個磨閉這樣的庫(工程會共用庫中的這個jar)蔽叢。如果 Android-ViewPagerIndicator Library 中的support-v4 不能滿足你的要求,那只能用第2種方法,下載好后,把你要的support-v4替換Library文件夾中的,然后按步驟進(jìn)行即可。

AS怎么導(dǎo)入第三方庫文件

下面分兩種情況介紹一下如何導(dǎo)入第三方類庫。

1、戚備帶對于jar的類庫,非常簡單,只要在項(xiàng)目根目錄下新建一個libs目錄,然后高蘆把jar復(fù)制滾和進(jìn)去,在jar上點(diǎn)擊右鍵,選擇Add

as

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

android studio源碼怎么使用

Android Studio開發(fā)/調(diào)試Android源碼的方法如下:

1、修改Android Studio(以下簡稱AS)的內(nèi)存配團(tuán)明置

2、配置AS的JDK、SDK

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

4、解決源碼中跳轉(zhuǎn)錯誤問題

5、可以通過給剛導(dǎo)入的工程在'Modules'中添加'Android Framework'來信肢讓AS將它作為一個Android工程,從而方便我們調(diào)試代碼.

如何用 Intellij 導(dǎo)入 Android 源碼?

針對定制源碼或者原生源碼來說,這些準(zhǔn)備步驟都是必須的,沒必要再強(qiáng)調(diào)了。

2-2 配置導(dǎo)入及使用

2-2-1 編譯源碼idegen模塊及生成AS配置文件(*.ipr)

在開始編譯idegen模塊前,你一定知道需要先全局編譯出out目錄及相關(guān)文件吧,這個不再過多說了,我們通過如下命令編譯idegen模塊:

mmm development/tools/idegen/1

這行命令的意思是編譯idegen這個模塊項(xiàng)目,然后生成idegen.jar文件(不信你自己去查看這個模塊的Android.mk的目標(biāo)吧,不多解釋)。運(yùn)行完以后如果看到如下信息則說明編譯OK:

......

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

接著執(zhí)行如下腳本:

development/tools/idegen/idegen.sh1

這行命令的意思是在根目錄生成對應(yīng)的android.ipr、android.iml IEDA工程配置文件。等待片刻得到類似如下信息說明OK:

Read excludes: 21ms

Traversed tree: 194799ms12

通過如上操作我們就完成了基本的源碼配置工作。

2-2-2 導(dǎo)入Android Studio前的一些客戶化操作

大家都知租賣道使用Eclipse倒入源碼很慢,Android Studio導(dǎo)入源碼時也慢,所以建議修改android.iml文件(將自己不用的代碼去掉),然后再導(dǎo)入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=""/寫法一樣過濾掉不需要的內(nèi)容,這樣在導(dǎo)入時就會快很多。

也可以通過Android Studio的Project Stucture 打開左側(cè)Modules,然后將右側(cè)Sources中一些目錄Excluded掉。

2-2-3 使用Android Studio導(dǎo)入源碼工程

有了如上的這些操作以后,我們打開Android Studio,然后選擇打開一個現(xiàn)有的Android Studio項(xiàng)目,然后選擇打開源碼根目錄下的android.ipr文件,然后出現(xiàn)如圖一樣的索引即可等豎型含待余笑導(dǎo)入就行:tu

到目前為止我們就可以方便的使用Android Studio查看源碼啦。如下圖所示:

吊不屌?。。?/p>

2-3 使用技巧

上圖我們看見了,可以通過Android Studio搜索整套源碼的代碼了。但是這時候如果你打開一個Service.java類,然后把鼠標(biāo)放在其中任意方法的Intent參數(shù)上按住CTRL+鼠標(biāo)左鍵跳轉(zhuǎn)到Intent類你會發(fā)現(xiàn)跳轉(zhuǎn)過去的是一個Intent.class文件,為啥呢?因?yàn)樗D(zhuǎn)的是你的默認(rèn)SDK中的jar內(nèi)部的class文件。既然要修改查看整套源碼,這么跳轉(zhuǎn)得多蛋疼啊,所以我們需要配置讓其能跳轉(zhuǎn)到Intent.java文件,具體做法如下:

首先刪掉依賴中的所有依賴,只保留下圖中沒被選中的那兩個(當(dāng)然你可以選擇保留一些你用到的其他jar),如下:

接著點(diǎn)擊加號的JARs or directories將你源碼的frameworks及external和你用到的其他跳轉(zhuǎn)目錄添加到依賴中,然后apply即可。

這時候我們在像上面一樣打開Service.java跳轉(zhuǎn)Intent,你會發(fā)現(xiàn)像下圖一樣直接跳轉(zhuǎn)到你源碼路徑下的Intent.java文件了,如下:

到此對于平時只是查看源碼的人來說已經(jīng)夠用了。

3 總結(jié)

俗話說工欲善其事必先利其器,你會發(fā)現(xiàn)使用Android Studio比Eclipse和Source Insight都好很多(當(dāng)然了,SubText還是很強(qiáng)大的),無論是代碼提示還是跳轉(zhuǎn)、還是Python Shell等插件支持等都很強(qiáng)大,慢慢體驗(yàn)吧。

順帶說一句,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

步枯燃驟

準(zhǔn)備好沒乎虛需要引入的demens.xml文件

把這個文件復(fù)制到項(xiàng)目的頃賀app/res/valuse/dimens目錄下

引入demens完成

as怎么導(dǎo)入源碼的介紹就聊到這里吧,感謝你花時間閱讀本站內(nèi)容,更多關(guān)于as導(dǎo)入github項(xiàng)目、as怎么導(dǎo)入源碼的信息別忘了在本站進(jìn)行查找喔。

掃描二維碼推送至手機(jī)訪問。

版權(quán)聲明:本文由飛速云SEO網(wǎng)絡(luò)優(yōu)化推廣發(fā)布,如需轉(zhuǎn)載請注明出處。

本文鏈接:http://landcheck.net/post/16847.html

“as怎么導(dǎo)入源碼(as導(dǎo)入github項(xiàng)目)” 的相關(guān)文章

漢中軟件開發(fā)公司(漢中軟件開發(fā)公司有哪些)

漢中軟件開發(fā)公司(漢中軟件開發(fā)公司有哪些)

本篇文章給大家談?wù)劃h中軟件開發(fā)公司,以及漢中軟件開發(fā)公司有哪些對應(yīng)的知識點(diǎn),希望對各位有所幫助,不要忘了收藏本站喔。 本文目錄一覽: 1、漢中漢商網(wǎng)絡(luò)技術(shù)有限公司怎么樣? 2、漢中經(jīng)緯互聯(lián)網(wǎng)絡(luò)科技有限公司怎么樣? 3、漢中市奇米網(wǎng)絡(luò)科技有限公司怎么樣? 漢中漢商網(wǎng)絡(luò)技術(shù)有限公司怎么樣? 簡...

手機(jī)怎么用電腦端瀏覽器(如何手機(jī)使用電腦瀏覽器)

手機(jī)怎么用電腦端瀏覽器(如何手機(jī)使用電腦瀏覽器)

今天給各位分享手機(jī)怎么用電腦端瀏覽器的知識,其中也會對如何手機(jī)使用電腦瀏覽器進(jìn)行解釋,如果能碰巧解決你現(xiàn)在面臨的問題,別忘了關(guān)注本站,現(xiàn)在開始吧!本文目錄一覽: 1、安卓手機(jī)瀏覽器怎么設(shè)置成電腦版 2、手機(jī)瀏覽器怎么切換電腦版 3、手機(jī)怎么進(jìn)去電腦版網(wǎng)頁 安卓手機(jī)瀏覽器怎么設(shè)置成電腦版 安...

蘋果X如何信任軟件(蘋果x怎么信任一個軟件)

蘋果X如何信任軟件(蘋果x怎么信任一個軟件)

今天給各位分享蘋果X如何信任軟件的知識,其中也會對蘋果x怎么信任一個軟件進(jìn)行解釋,如果能碰巧解決你現(xiàn)在面臨的問題,別忘了關(guān)注本站,現(xiàn)在開始吧!本文目錄一覽: 1、蘋果X信任設(shè)置在哪里 2、想問蘋果xr信任設(shè)置在哪里 3、蘋果x手機(jī)怎么打開信任的開發(fā)者 4、蘋果手機(jī)受信任在哪里設(shè)置?...

如何在剪映上傳自己制作的模板(怎么把作品上傳到剪映,自己做的模板怎么上傳到剪映)

如何在剪映上傳自己制作的模板(怎么把作品上傳到剪映,自己做的模板怎么上傳到剪映)

本篇文章給大家談?wù)勅绾卧诩粲成蟼髯约褐谱鞯哪0澹约霸趺窗炎髌飞蟼鞯郊粲?自己做的模板怎么上傳到剪映對應(yīng)的知識點(diǎn),希望對各位有所幫助,不要忘了收藏本站喔。 本文目錄一覽: 1、剪映專業(yè)版如何將視頻嵌入模板 2、剪映怎么做模板讓別人用? 3、剪映怎樣做模板出售 4、用剪映怎樣制作放假通知模...

數(shù)碼寶貝卡牌DTCG官網(wǎng)(數(shù)碼寶貝卡牌dtcg官網(wǎng)下載)

數(shù)碼寶貝卡牌DTCG官網(wǎng)(數(shù)碼寶貝卡牌dtcg官網(wǎng)下載)

本篇文章給大家談?wù)剶?shù)碼寶貝卡牌DTCG官網(wǎng),以及數(shù)碼寶貝卡牌dtcg官網(wǎng)下載對應(yīng)的知識點(diǎn),希望對各位有所幫助,不要忘了收藏本站喔。 本文目錄一覽: 1、數(shù)碼寶貝dtcg規(guī)則 開始回合抽幾張 2、數(shù)碼寶貝dtcg卡牌尺寸 3、數(shù)碼寶貝DTCG在山西有負(fù)責(zé)人嗎? 4、數(shù)碼寶貝對戰(zhàn)卡牌用不用補(bǔ)...

怎么查看自己申請過的郵箱(怎么查郵箱申請時間)

怎么查看自己申請過的郵箱(怎么查郵箱申請時間)

今天給各位分享怎么查看自己申請過的郵箱的知識,其中也會對怎么查郵箱申請時間進(jìn)行解釋,如果能碰巧解決你現(xiàn)在面臨的問題,別忘了關(guān)注本站,現(xiàn)在開始吧!本文目錄一覽: 1、我注冊了自己的郵箱.在哪去看我的郵箱? 2、我申請了郵箱,怎么能看到啊我想查看我的郵箱應(yīng)該怎么查 3、如何知道自己的郵箱 注冊過...

普宁市| 剑河县| 江孜县| 南乐县| 阿荣旗| 安顺市| 石屏县| 剑川县| 维西| 黄骅市| 红桥区| 布尔津县| 安图县| 保亭| 香格里拉县| 凤山市| 岳阳县| 昌图县| 东方市| 宣城市| 崇信县| 宜丰县| 盐亭县| 剑川县| 惠来县| 临清市| 屯昌县| 灌云县| 栾城县| 乌苏市| 甘谷县| 汕头市| 托克托县| 延吉市| 馆陶县| 永吉县| 乌拉特前旗| 都兰县| 塔城市| 南雄市| 万荣县|