用android studio new 一個demo時用到RecyclerView隔盛,先在xml中引入support v7包的RecyclerView,發(fā)現(xiàn)沒有找到對應(yīng)的RecyclerView,然后研究了下需要導(dǎo)入recyclerview-v7包
android studio新建工程的時候會導(dǎo)入V7包衙傀,如下在build.gradle中加入recyclerview-v7包和support-v4包
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
defaultConfig {
applicationId "demo.igeak.com.samplelist"
minSdkVersion 21
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
buildToolsVersion '26.0.2'
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
implementation 'com.android.support:recyclerview-v7:27.0.0'
implementation 'com.android.support:support-v4:27.0.0'
implementation 'org.greenrobot:eventbus:3.1.1'
}
但有時候我們根本不清楚所引用包具體包名和版本,那怎么處理呢?
Android studio提供了可視化的操作,讓你更方便的引入你所需要的包,按下面步驟即可
第一步:
第二步:
加入Jar包依賴或加入Module依賴直接入上圖步驟三中選擇對應(yīng)的選項即可编检。
第三步:
總結(jié):通過可視化方便我們進行配置,當(dāng)然如果熟悉的話直接在build.gradle中寫對應(yīng)的語法