Baindo is a library that let you implement the MVVM (Model View View-Model) pattern in a very simple and efficient way. Contrary to other frameworks, Baindo is built with performance in mind, so it doesn't use any kind of reflection. Bind your views and adapters with Baindo to your ViewModels and keep them away from any dependency with your UI.
Baindo uses Pedro Gomez's Renderers library as a base to build the binders to adapters.
TODO
public class TODO {
@Override
public void onCreate() {
super.onCreate();
}
}
Take a look at the Sample project!
Download via Maven:
<dependency>
<groupId>com.raycoarana</groupId>
<artifactId>baindo</artifactId>
<version>1.0.0-SNAPSHOT/version>
</dependency>
or Gradle:
compile 'com.raycoarana:baindo:1.0.0-SNAPSHOT'
Copyright 2015 Rayco Araña
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.