tried to import android.support.v7.widget.RecyclerView file, but it didn’t work, also added
compile 'com.android.support:recyclerview-v7:23.1.1'
to build .gradle but that didn't help
you can also add lib / dependencies from the android studio menu.
Click Create → Edit Libraries and Dependencies . then click the “ + ” button on the right side.
find any lib.
search example "recycler"
then select " com.android.support:recyclerview-v7:xxx " from the list and 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 latest dependency
compile 'com.android.support:recyclerview-v7:25.3.1' compile 'com.android.support:design:25.3.1'