tried to import android.support.v7.widget.RecyclerView, but it didn\'t work, added also
compile \'com.android.support:recyclerview-v7:23.1.1\'
Only putting this
implementation'com.android.support:design:25.3.1'
Will also work.
you can also add lib/dependencies from android studio menu.
click on "Build" -> "Edit Libraries and Dependencies". then click on "+" button on right side.
search any lib.
example search "recycler"
then select "com.android.support:recyclerview-v7:x.x.x" from list and your done.
build.gradle
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.android.support:recyclerview-v7:23.1.1'}
Layout
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical" />
</RelativeLayout>
build gradle:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.android.support:recyclerview-v7:23.1.1'
}
xml file:
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:scrollbars="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
Update this Dependency Latest
compile 'com.android.support:recyclerview-v7:25.3.1'
compile 'com.android.support:design:25.3.1'