├── .gitignore ├── .idea ├── caches │ ├── build_file_checksums.ser │ └── gradle_models.ser ├── codeStyles │ └── Project.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── DragAndDrop.gif ├── Grid.gif ├── Horizontal.gif ├── README.md ├── Swipe.gif ├── addFavorites.gif ├── addItem.gif ├── animation.gif ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── thedeveloperworldisyours │ │ └── fullrecycleview │ │ ├── MainActivity.java │ │ ├── addfavorites │ │ ├── AddFavoritesAdapter.java │ │ ├── AddFavoritesFragment.java │ │ └── model │ │ │ ├── ElementList.java │ │ │ ├── Fruit.java │ │ │ └── Section.java │ │ ├── animation │ │ ├── AnimationData.java │ │ ├── AnimationFragment.java │ │ └── AnimationRecyclerViewAdapter.java │ │ ├── chat │ │ ├── ChatAdapter.java │ │ ├── ChatData.java │ │ └── ChatFragment.java │ │ ├── common │ │ ├── DividerItemDecoration.java │ │ └── DividerVerticalItemDecoration.java │ │ ├── dragandswipe │ │ ├── DragAndSwipeListFragment.java │ │ ├── DragGridFragment.java │ │ ├── adapter │ │ │ ├── DragAndDropGridAdapter.java │ │ │ └── DragAndSwipeRecyclerListAdapter.java │ │ └── helper │ │ │ ├── ItemTouchHelperAdapter.java │ │ │ ├── ItemTouchHelperViewHolder.java │ │ │ ├── OnStartDragListener.java │ │ │ └── SimpleItemTouchHelperCallback.java │ │ ├── expandable │ │ ├── Artist.java │ │ ├── ExpandableAdapter.java │ │ ├── ExpandableFragment.java │ │ ├── Genre.java │ │ ├── GenreDataFactory.java │ │ ├── KidViewHolder.java │ │ └── ParentViewHolder.java │ │ ├── horizontal │ │ ├── HorizontalData.java │ │ ├── HorizontalFragment.java │ │ └── HorizontalRecyclerViewAdapter.java │ │ ├── indexed │ │ ├── IndexedAdapter.java │ │ └── IndexedFragment.java │ │ ├── multiple │ │ ├── MultipleData.java │ │ ├── MultipleFragment.java │ │ └── MultipleRecyclerViewAdapter.java │ │ ├── multipleclicks │ │ ├── MultipleClickData.java │ │ ├── MultipleClicksAdapter.java │ │ └── MultipleClicksFragment.java │ │ ├── sections │ │ ├── SectionAdapter.java │ │ ├── SectionFragment.java │ │ └── model │ │ │ └── ElementList.java │ │ ├── sectionwithline │ │ ├── ElementList.java │ │ ├── SectionWithLineAdapter.java │ │ └── SectionWithLineFragment.java │ │ ├── single │ │ ├── SingleFragment.java │ │ └── SingleRecyclerViewAdapter.java │ │ ├── snap │ │ ├── SnapData.java │ │ ├── SnapFragment.java │ │ └── SnapHorizontalRecyclerViewAdapter.java │ │ ├── stickyheader │ │ ├── AnimalsAdapter.java │ │ ├── AnimalsHeadersAdapter.java │ │ └── StickyHeaderFragment.java │ │ ├── swipe │ │ ├── Employee.java │ │ ├── SwipeListFragment.java │ │ └── adapter │ │ │ └── SwipeRecyclerViewAdapter.java │ │ ├── updateData │ │ ├── UpdateData.java │ │ ├── UpdateDataAdapter.java │ │ └── UpdateDataFragment.java │ │ └── vertical │ │ ├── VerticalData.java │ │ ├── VerticalFragment.java │ │ └── VerticalRecyclerViewAdapter.java │ └── res │ ├── drawable │ ├── circle_icon.xml │ ├── rectangle.xml │ ├── rectangle_call.xml │ ├── rectangle_chat_bubble.xml │ ├── rectangle_chat_bubble_red.xml │ ├── rectangle_multiple_click_dark.xml │ ├── rectangle_multiple_click_selected.xml │ ├── rectangle_multiple_clicks.xml │ ├── rectangle_multiple_clicks_blue.xml │ ├── selector.xml │ ├── selector_row.xml │ ├── selector_text.xml │ ├── thedeveloperworldisyours.png │ ├── thewordis.jpg │ └── theworldisyours.jpg │ ├── layout │ ├── activity_main.xml │ ├── add_favorites_fragment.xml │ ├── add_favorites_list_item.xml │ ├── add_favorites_section_list_item.xml │ ├── chat_fragment.xml │ ├── chat_item_list_receive_message.xml │ ├── chat_item_list_send_message.xml │ ├── chat_item_list_time.xml │ ├── contacts_fragment.xml │ ├── contacts_row_details.xml │ ├── drag_drop_list_item.xml │ ├── drag_swipe_list_item.xml │ ├── expandable_fragment.xml │ ├── expandable_kid_list_item.xml │ ├── expandable_parent_list_item.xml │ ├── horizontal_fragment.xml │ ├── horizontal_list_item.xml │ ├── indexed_fragment.xml │ ├── indexed_item_list_view.xml │ ├── indexed_item_list_view_header.xml │ ├── kotlin_vertical_fragment.xml │ ├── multiple_clicks_dialog.xml │ ├── multiple_clicks_fragment.xml │ ├── multiple_clicks_list_item.xml │ ├── multiple_fragment.xml │ ├── multiple_list_item.xml │ ├── section_fragment.xml │ ├── section_item_list.xml │ ├── section_section_list_item.xml │ ├── section_with_lien_list_item_header.xml │ ├── section_with_line_fragment.xml │ ├── section_with_line_list_item.xml │ ├── single_fragment.xml │ ├── single_list_item.xml │ ├── snap_fragment.xml │ ├── snap_list_item.xml │ ├── sticky_header.xml │ ├── sticky_header_fragment.xml │ ├── sticky_item.xml │ ├── swipe_fragment.xml │ ├── swipe_list_item.xml │ ├── update_data_fragment.xml │ ├── vertical_fragment.xml │ └── vertical_list_item.xml │ ├── menu │ └── main_menu.xml │ ├── mipmap-hdpi │ ├── arrow_crud.jpg │ ├── arrow_double_up.png │ ├── arrow_left_right.png │ ├── arrow_left_right_simple.png │ └── ic_launcher.jpg │ ├── mipmap-mdpi │ ├── arrow_crud.jpg │ ├── arrow_double_up.png │ ├── arrow_left_right.png │ ├── arrow_left_right_simple.png │ └── ic_launcher.jpg │ ├── mipmap-xhdpi │ ├── arrow_crud.png │ ├── arrow_double_up.png │ ├── arrow_left_right.png │ ├── arrow_left_right_simple.png │ └── ic_launcher.jpg │ ├── mipmap-xxhdpi │ ├── arrow_crud.png │ ├── arrow_double_up.png │ ├── arrow_left_right.png │ ├── arrow_left_right_simple.png │ └── ic_launcher.jpg │ ├── mipmap-xxxhdpi │ ├── arrow_crud.png │ ├── arrow_double_up.png │ ├── arrow_left_right.png │ ├── arrow_left_right_simple.png │ └── ic_launcher.jpg │ ├── values-w820dp │ └── dimens.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── interger.xml │ ├── strings.xml │ └── styles.xml ├── chat.gif ├── deleteItem.gif ├── expandable.gif ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── horizontalSnap.gif ├── indexed.gif ├── menu.gif ├── multipleChoice.gif ├── multipleClick.gif ├── section.gif ├── sectionWithLines.gif ├── settings.gradle ├── singleChoice.gif ├── stickyheader.gif ├── title.png ├── updateData.gif └── verticalSnap.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /.idea/caches/gradle_models.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/.idea/caches/gradle_models.ser -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /DragAndDrop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/DragAndDrop.gif -------------------------------------------------------------------------------- /Grid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/Grid.gif -------------------------------------------------------------------------------- /Horizontal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/Horizontal.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/README.md -------------------------------------------------------------------------------- /Swipe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/Swipe.gif -------------------------------------------------------------------------------- /addFavorites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/addFavorites.gif -------------------------------------------------------------------------------- /addItem.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/addItem.gif -------------------------------------------------------------------------------- /animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/animation.gif -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/addfavorites/AddFavoritesAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/addfavorites/AddFavoritesAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/addfavorites/AddFavoritesFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/addfavorites/AddFavoritesFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/addfavorites/model/ElementList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/addfavorites/model/ElementList.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/addfavorites/model/Fruit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/addfavorites/model/Fruit.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/addfavorites/model/Section.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/addfavorites/model/Section.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/animation/AnimationData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/animation/AnimationData.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/animation/AnimationFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/animation/AnimationFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/animation/AnimationRecyclerViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/animation/AnimationRecyclerViewAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/chat/ChatAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/chat/ChatAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/chat/ChatData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/chat/ChatData.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/chat/ChatFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/chat/ChatFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/common/DividerItemDecoration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/common/DividerItemDecoration.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/common/DividerVerticalItemDecoration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/common/DividerVerticalItemDecoration.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/dragandswipe/DragAndSwipeListFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/dragandswipe/DragAndSwipeListFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/dragandswipe/DragGridFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/dragandswipe/DragGridFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/dragandswipe/adapter/DragAndDropGridAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/dragandswipe/adapter/DragAndDropGridAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/dragandswipe/adapter/DragAndSwipeRecyclerListAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/dragandswipe/adapter/DragAndSwipeRecyclerListAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/dragandswipe/helper/ItemTouchHelperAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/dragandswipe/helper/ItemTouchHelperAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/dragandswipe/helper/ItemTouchHelperViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/dragandswipe/helper/ItemTouchHelperViewHolder.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/dragandswipe/helper/OnStartDragListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/dragandswipe/helper/OnStartDragListener.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/dragandswipe/helper/SimpleItemTouchHelperCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/dragandswipe/helper/SimpleItemTouchHelperCallback.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/expandable/Artist.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/expandable/Artist.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/expandable/ExpandableAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/expandable/ExpandableAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/expandable/ExpandableFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/expandable/ExpandableFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/expandable/Genre.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/expandable/Genre.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/expandable/GenreDataFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/expandable/GenreDataFactory.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/expandable/KidViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/expandable/KidViewHolder.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/expandable/ParentViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/expandable/ParentViewHolder.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/horizontal/HorizontalData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/horizontal/HorizontalData.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/horizontal/HorizontalFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/horizontal/HorizontalFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/horizontal/HorizontalRecyclerViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/horizontal/HorizontalRecyclerViewAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/indexed/IndexedAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/indexed/IndexedAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/indexed/IndexedFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/indexed/IndexedFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/multiple/MultipleData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/multiple/MultipleData.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/multiple/MultipleFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/multiple/MultipleFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/multiple/MultipleRecyclerViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/multiple/MultipleRecyclerViewAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/multipleclicks/MultipleClickData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/multipleclicks/MultipleClickData.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/multipleclicks/MultipleClicksAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/multipleclicks/MultipleClicksAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/multipleclicks/MultipleClicksFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/multipleclicks/MultipleClicksFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/sections/SectionAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/sections/SectionAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/sections/SectionFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/sections/SectionFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/sections/model/ElementList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/sections/model/ElementList.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/sectionwithline/ElementList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/sectionwithline/ElementList.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/sectionwithline/SectionWithLineAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/sectionwithline/SectionWithLineAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/sectionwithline/SectionWithLineFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/sectionwithline/SectionWithLineFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/single/SingleFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/single/SingleFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/single/SingleRecyclerViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/single/SingleRecyclerViewAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/snap/SnapData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/snap/SnapData.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/snap/SnapFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/snap/SnapFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/snap/SnapHorizontalRecyclerViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/snap/SnapHorizontalRecyclerViewAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/stickyheader/AnimalsAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/stickyheader/AnimalsAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/stickyheader/AnimalsHeadersAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/stickyheader/AnimalsHeadersAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/stickyheader/StickyHeaderFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/stickyheader/StickyHeaderFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/swipe/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/swipe/Employee.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/swipe/SwipeListFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/swipe/SwipeListFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/swipe/adapter/SwipeRecyclerViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/swipe/adapter/SwipeRecyclerViewAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/updateData/UpdateData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/updateData/UpdateData.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/updateData/UpdateDataAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/updateData/UpdateDataAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/updateData/UpdateDataFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/updateData/UpdateDataFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/vertical/VerticalData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/vertical/VerticalData.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/vertical/VerticalFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/vertical/VerticalFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/vertical/VerticalRecyclerViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/java/com/thedeveloperworldisyours/fullrecycleview/vertical/VerticalRecyclerViewAdapter.java -------------------------------------------------------------------------------- /app/src/main/res/drawable/circle_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/drawable/circle_icon.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rectangle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/drawable/rectangle.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rectangle_call.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/drawable/rectangle_call.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rectangle_chat_bubble.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/drawable/rectangle_chat_bubble.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rectangle_chat_bubble_red.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/drawable/rectangle_chat_bubble_red.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rectangle_multiple_click_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/drawable/rectangle_multiple_click_dark.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rectangle_multiple_click_selected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/drawable/rectangle_multiple_click_selected.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rectangle_multiple_clicks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/drawable/rectangle_multiple_clicks.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rectangle_multiple_clicks_blue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/drawable/rectangle_multiple_clicks_blue.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/drawable/selector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/selector_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/drawable/selector_row.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/selector_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/drawable/selector_text.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/thedeveloperworldisyours.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/drawable/thedeveloperworldisyours.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/thewordis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/drawable/thewordis.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/theworldisyours.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/drawable/theworldisyours.jpg -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/add_favorites_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/add_favorites_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/add_favorites_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/add_favorites_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/add_favorites_section_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/add_favorites_section_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/chat_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/chat_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/chat_item_list_receive_message.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/chat_item_list_receive_message.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/chat_item_list_send_message.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/chat_item_list_send_message.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/chat_item_list_time.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/chat_item_list_time.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/contacts_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/contacts_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/contacts_row_details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/contacts_row_details.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/drag_drop_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/drag_drop_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/drag_swipe_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/drag_swipe_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/expandable_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/expandable_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/expandable_kid_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/expandable_kid_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/expandable_parent_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/expandable_parent_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/horizontal_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/horizontal_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/horizontal_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/horizontal_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/indexed_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/indexed_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/indexed_item_list_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/indexed_item_list_view.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/indexed_item_list_view_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/indexed_item_list_view_header.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/kotlin_vertical_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/kotlin_vertical_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/multiple_clicks_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/multiple_clicks_dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/multiple_clicks_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/multiple_clicks_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/multiple_clicks_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/multiple_clicks_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/multiple_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/multiple_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/multiple_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/multiple_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/section_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/section_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/section_item_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/section_item_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/section_section_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/section_section_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/section_with_lien_list_item_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/section_with_lien_list_item_header.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/section_with_line_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/section_with_line_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/section_with_line_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/section_with_line_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/single_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/single_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/single_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/single_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/snap_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/snap_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/snap_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/snap_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/sticky_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/sticky_header.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/sticky_header_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/sticky_header_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/sticky_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/sticky_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/swipe_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/swipe_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/swipe_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/swipe_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/update_data_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/update_data_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/vertical_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/vertical_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/vertical_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/layout/vertical_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/main_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/menu/main_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/arrow_crud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/mipmap-hdpi/arrow_crud.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/arrow_double_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/mipmap-hdpi/arrow_double_up.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/arrow_left_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/mipmap-hdpi/arrow_left_right.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/arrow_left_right_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/mipmap-hdpi/arrow_left_right_simple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/arrow_crud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/mipmap-mdpi/arrow_crud.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/arrow_double_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/mipmap-mdpi/arrow_double_up.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/arrow_left_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/mipmap-mdpi/arrow_left_right.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/arrow_left_right_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/mipmap-mdpi/arrow_left_right_simple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/arrow_crud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/arrow_crud.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/arrow_double_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/arrow_double_up.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/arrow_left_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/arrow_left_right.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/arrow_left_right_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/arrow_left_right_simple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/arrow_crud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/mipmap-xxhdpi/arrow_crud.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/arrow_double_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/mipmap-xxhdpi/arrow_double_up.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/arrow_left_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/mipmap-xxhdpi/arrow_left_right.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/arrow_left_right_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/mipmap-xxhdpi/arrow_left_right_simple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/arrow_crud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/mipmap-xxxhdpi/arrow_crud.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/arrow_double_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/mipmap-xxxhdpi/arrow_double_up.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/arrow_left_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/mipmap-xxxhdpi/arrow_left_right.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/arrow_left_right_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/mipmap-xxxhdpi/arrow_left_right_simple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.jpg -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/interger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/values/interger.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /chat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/chat.gif -------------------------------------------------------------------------------- /deleteItem.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/deleteItem.gif -------------------------------------------------------------------------------- /expandable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/expandable.gif -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/gradlew.bat -------------------------------------------------------------------------------- /horizontalSnap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/horizontalSnap.gif -------------------------------------------------------------------------------- /indexed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/indexed.gif -------------------------------------------------------------------------------- /menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/menu.gif -------------------------------------------------------------------------------- /multipleChoice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/multipleChoice.gif -------------------------------------------------------------------------------- /multipleClick.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/multipleClick.gif -------------------------------------------------------------------------------- /section.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/section.gif -------------------------------------------------------------------------------- /sectionWithLines.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/sectionWithLines.gif -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /singleChoice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/singleChoice.gif -------------------------------------------------------------------------------- /stickyheader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/stickyheader.gif -------------------------------------------------------------------------------- /title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/title.png -------------------------------------------------------------------------------- /updateData.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/updateData.gif -------------------------------------------------------------------------------- /verticalSnap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedeveloperworldisyours/FullRecyclerView/HEAD/verticalSnap.gif --------------------------------------------------------------------------------