Home | History | Annotate | only in /developers/build/prebuilts/gradle/RecyclerView/kotlinApp
Up to higher level directory
NameDateSize
.google/22-Oct-2020
app/22-Oct-2020
build.gradle22-Oct-2020644
gradle/22-Oct-2020
gradle.properties22-Oct-2020730
gradlew22-Oct-20204.9K
gradlew.bat22-Oct-20202.3K
README.md22-Oct-20202.9K
settings.gradle22-Oct-202015

README.md

      1 
      2 Android RecyclerView Sample (Kotlin)
      3 ====================================
      4 
      5 Sample demonstrating the use of RecyclerView to layout elements with a
      6 LinearLayoutManager and with a GridLayoutManager. It also demonstrates
      7 how to handle touch events on elements.
      8 
      9 
     10 Introduction
     11 ------------
     12 
     13 Sample demonstrating the use of [RecyclerView][1] to layout elements with a
     14 [LinearLayoutManager][2] or with a [GridLayoutManager][3].
     15 
     16 [RecyclerView][1] can display large datasets that can be scrolled
     17 efficiently by recycling a limited number of views. Click listeners can be
     18 defined when [ViewHolder][4] views are instantiated. [RecyclerView][1] is
     19 available in the v7 Support Library, thus compatible with API level 7 and above.
     20 
     21 Tap "Show Log" menu item to display log of elements as they are laid out and
     22 tapped. Use radio buttons to toggle between [LinearLayoutManager][2] and
     23 [GridLayoutManager][3].
     24 
     25 [1]: https://developer.android.com/reference/android/support/v7/widget/RecyclerView.html
     26 [2]: https://developer.android.com/reference/android/support/v7/widget/LinearLayoutManager.html
     27 [3]: https://developer.android.com/reference/android/support/v7/widget/GridLayoutManager.html
     28 [4]: https://developer.android.com/reference/android/support/v7/widget/RecyclerView.ViewHolder.html
     29 
     30 Pre-requisites
     31 --------------
     32 
     33 - Android SDK 27
     34 - Android Gradle Plugin 3.0
     35 - Android Support Repository
     36 
     37 Screenshots
     38 -------------
     39 
     40 <img src="screenshots/1-linear.png" height="400" alt="Screenshot"/> <img src="screenshots/2-grid.png" height="400" alt="Screenshot"/>
     41 
     42 Getting Started
     43 ---------------
     44 
     45 This sample uses the Gradle build system. To build this project, use the
     46 "gradlew build" command or use "Import Project" in Android Studio.
     47 
     48 Support
     49 -------
     50 
     51 - Google+ Community: https://plus.google.com/communities/105153134372062985968
     52 - Stack Overflow: http://stackoverflow.com/questions/tagged/android
     53 
     54 If you've found an error in this sample, please file an issue:
     55 https://github.com/googlesamples/android-RecyclerView
     56 
     57 Patches are encouraged, and may be submitted by forking this project and
     58 submitting a pull request through GitHub. Please see CONTRIBUTING.md for more details.
     59 
     60 License
     61 -------
     62 
     63 Copyright 2017 The Android Open Source Project, Inc.
     64 
     65 Licensed to the Apache Software Foundation (ASF) under one or more contributor
     66 license agreements.  See the NOTICE file distributed with this work for
     67 additional information regarding copyright ownership.  The ASF licenses this
     68 file to you under the Apache License, Version 2.0 (the "License"); you may not
     69 use this file except in compliance with the License.  You may obtain a copy of
     70 the License at
     71 
     72 http://www.apache.org/licenses/LICENSE-2.0
     73 
     74 Unless required by applicable law or agreed to in writing, software
     75 distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
     76 WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
     77 License for the specific language governing permissions and limitations under
     78 the License.
     79