Tesela


Source link: https://github.com/raycoarana/tesela

Tesela

Tesela is a code generate based library that helps you implement Model-View-Presenter pattern on Android. It let you annotate methods to make them be executed on UI thread or on a background thread. It will help you to keep a weak reference to the view, so forget about leaking your Fragment or Activity anymore while your background work finishes.

How to use it?

The first thing to do is to initialize Tesela providing it a TeselaExecutor implementation. That way you can control where background work will be executed, how many threads are created, use an standard Java thread pool or other kind of thread pool.

public class SampleApplication extends Application {

@Override
  public void onCreate() {

super.onCreate();

 final Handler mainThreadHandler = new Handler();

final Executor backgroundExecutor = Executors.newSingleThreadExecutor();

Tesela.init(new TeselaExecutor() {

 @Override

 public boolean isMainCurrentThread() {

  return Looper.myLooper() == Looper.getMainLooper();

 
}

 @Override

 public void executeInUIThread(Runnable runnable) {

  mainThreadHandler.post(runnable);

 
}

 @Override

 public void executeInBackground(Runnable runnable) {

  executeInBackground(runnable, null);

 
}

 @Override

 public void executeInBackground(Runnable runnable, String tag) {

  backgroundExecutor.execute(runnable);

 
}

}
);

  
}
  
}

Once you have Tesela initialized, you just have to annotate your classes, the first thing is annotate your view interface with the @View annotation.

@View public interface HelloWorldView {

  void showMessage(String message);
 
}

Then on your presenter, annotate your view attribute and change it's type to WeakXXXX, where XXXX is the name of the view interface. This class will hold a weak reference to your view and will have all methods of your interface, so you don't have to deal with the weak reference.

public class HelloWorldPresenter {

@ViewReference
  protected WeakHelloWorldView mView;

public void onInitialize(HelloWorldView view) {

mView = WeakHelloWorldView.of(view);

  
}

...
 

Now simply annotate methods that needs to be executed on a background thread with @Background and methods that needs to be executed in UI thread with @UI.

 @Background
  protected void onDoSomething() {

//Do some hard work here

 refreshView();

  
}

@UI
  protected void refreshView() {

mView.showMessage("HelloWorld");

  
}

Finally in your DI framework make sure every time you inject your presenter, the generated presenter by Tesela is injected instead.

 @Provides
  protected HelloWorldPresenter provideHelloWorldPresenter(TeselaHelloWorldPresenter impl) {

return impl;
  
}

Take a look at the Sample project!

Download

Download via Gradle:

compile 'com.raycoarana.tesela:tesela-library:0.0.2' apt 'com.raycoarana.tesela:tesela-compiler:0.0.2'

License

Copyright 2016 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. 

Resources

mini-equalizer-library-android is created to let you use an animated equalizer inside your music related apps.

An interesting sliding layout.

Collection Picker is an Android View library which looks like Foursquare Tastes picker.

Database Migrations Made Easy.

This library provides 9-patch based drop shadow for view elements.

GoldenGate is an Android annotation processor for generating type safe javascript bindings (Bridges). The library is very similar in usage to something like Retrofit in that only an interface has to be declared and annotated (though retrofit does not do any compile time code generating). This annotated interface is at compile time used to generate an type safe wrapper around a webview for interfacing with the javascript.

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