android-data-binding-recyclerview


Source link: https://github.com/radzio/android-data-binding-recyclerview

Android Data Binding + RecyclerView

Using Recyclerview with the new Android Data Binding framework.

How to start?

Just clone this repository and start playing with it! If you want to use some parts of this repository in your project read below.

Change your gradle file

  • In your main build.gradle add:
classpath 'com.android.tools.build:gradle:1.5.0'
  • In your app build.gradle add:
 dataBinding {

enabled = true
  
}

Modify your layout

Remember to use your classes and packages ;-).

<!-- layout.xml --> <layout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto">
  <data>

<variable

 name="usersViewModel"

 type="net.droidlabs.mvvmdemo.viewmodel.UsersViewModel"/>
  </data>  <android.support.v7.widget.RecyclerView

 android:id="@+id/activity_users_recycler"

 android:scrollbars="vertical"

 android:layout_width="match_parent"

 android:layout_height="match_parent"

 app:items="@{
usersViewModel.users
}
"

 app:itemViewBinder="@{
usersViewModel.itemViewBinder
}
"

 /> </layout>

Modify your activity

 // your activity  @Override
  protected void onCreate(Bundle savedInstanceState)
  {

super.onCreate(savedInstanceState);

usersViewModel = new UsersViewModel();

usersViewModel.users.add(new SuperUserViewModel(new User("Android", "Dev")));

 binding = DataBindingUtil.setContentView(this, R.layout.users_view);

binding.setUsersViewModel(usersViewModel);

binding.activityUsersRecycler.setLayoutManager(new LinearLayoutManager(this));

  
}

Modify your ViewModel class

 public class UsersViewModel extends BaseObservable
  {

public ObservableArrayList<UserViewModel> users;

 public ItemBinder<UserViewModel> itemViewBinder()

 {

  return new ItemBinderBase<UserViewModel>(BR.user, R.layout.item_user);

 
}

  
}

Some details

Your ViewModel ( UsersViewModel in my example) should have field of ObservableArrayList type which will be bind to recycler view.

Next thing is ItemViewBinder. This class is used in BindingRecyclerViewAdapter for creating ViewHolders and it's item views bindings. In my example I've created CompositeItemBinder in order to support two different item types with separate layouts. If you want to display list with one data type you can use ItemBinderBase:

 public ItemBinder<YourClass> itemViewBinder()
  {

  return new ItemBinderBase<YourClass>(BR.your_variable_name, R.layout.your_item_layout);

  
}

Please look at UsersView.java and UsersViewModel.java if something is unclear.

Resources

This library provides a circular button that looks like the new button shown in the Google+ app for Android.

Drawable animation inspired by Tinder.

Interpolation methods:

  • LinearInterpolator
  • BounceInterpolator
  • CycleInterpolator

Android Signature Pad is an Android library for drawing smooth signatures. It uses variable width Bézier curve interpolation.

Features:

  • Bézier implementation for a smoother line
  • Variable point size based on velocity
  • Customizable pen color and size

Various DialogFragments for Android:

  • AlertDialogFragment
  • ProgressDialogFragment
  • DatePickerDialogFragment
  • TimePickerDialogFragment
  • NumberPickerDialogFragment
  • StringPickerDialogFragment

Android library for getting existing db schema information from sqlite_master table.

You can use the schema information in your SQLiteOpenHelper's onCreate and onUpgrade to remove some boilerplate code.

Android library for populating the ContentProvider with test data.

The library is tightly coupled with MicroOrm and Thneed projects. You need to annotate your data models fields with MicroOrm's @Column.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes