├── .classpath ├── .derived ├── .gitignore ├── .project ├── .projectset ├── .settings ├── org.eclipse.core.resources.prefs └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── README.md ├── libs └── android-support-v7-recyclerview.jar ├── lint.xml ├── proguard-project.txt ├── project.properties ├── res └── values │ └── values.xml └── src └── .readme /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandar3/android-support-v7-recyclerview/HEAD/.classpath -------------------------------------------------------------------------------- /.derived: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandar3/android-support-v7-recyclerview/HEAD/.derived -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandar3/android-support-v7-recyclerview/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandar3/android-support-v7-recyclerview/HEAD/.project -------------------------------------------------------------------------------- /.projectset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandar3/android-support-v7-recyclerview/HEAD/.projectset -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandar3/android-support-v7-recyclerview/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandar3/android-support-v7-recyclerview/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandar3/android-support-v7-recyclerview/HEAD/README.md -------------------------------------------------------------------------------- /libs/android-support-v7-recyclerview.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandar3/android-support-v7-recyclerview/HEAD/libs/android-support-v7-recyclerview.jar -------------------------------------------------------------------------------- /lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandar3/android-support-v7-recyclerview/HEAD/lint.xml -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandar3/android-support-v7-recyclerview/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandar3/android-support-v7-recyclerview/HEAD/project.properties -------------------------------------------------------------------------------- /res/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandar3/android-support-v7-recyclerview/HEAD/res/values/values.xml -------------------------------------------------------------------------------- /src/.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandar3/android-support-v7-recyclerview/HEAD/src/.readme --------------------------------------------------------------------------------