Froggy


Source link: https://github.com/BullyBoo/Froggy

Froggy

Simple Mvp Implementation

Download

Gragle:

compile 'ru.bullyboo.mvp:froggy:1.0.2'

Maven:

<dependency>
 <groupId>ru.bullyboo.mvp</groupId>
 <artifactId>froggy</artifactId>
 <version>1.0.2</version>
 <type>pom</type>  </dependency>

Samples

Apk of Demo version

Usage

To create presenter, you need to inherit from class FrogPresenter and parametrized its with Model and View.

public class ExamplePresenter extends FrogPresenter<ExampleModel, ExampleActivity> {

//... 
}

Each presenter has a life cycle. It contains next methods:

/** * Calling when view and model was set */ @Override protected void onUpdateView(ExampleModel model, ExampleView view) {

}
  /** * Calling when new presenter was create */ @Override protected void onCreatePresenter(){
  
}
  /** * Calling when view attached */ @Override protected void onAttachedViewFirstTime(ExampleView view){
  
}
  /** * Calling when view attached */ @Override protected void onAttachedModelFirstTime(ExampleModel model){
  
}
  /** * Calling when view attached */ @Override protected void onAttachedView(ExampleView view){
  
}
  /** * Calling when model attached */ @Override protected void onAttachedModel(ExampleModel model){
  
}
  /** * Calling when view detach */ @Override protected void onDetachView(ExampleView view){
  
}
  /** * Calling when model detach */ @Override protected void onDetachModel(ExampleModel model){
  
}

To attach presenter to your Activity, you need to inherit from class FrogActivity or FrogAppCompatActivity.

public class MainActivity extends FrogActivity {

@Override
  protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

setPresenter(ExamplePresenter.class);

//...
  
}

  //... 
}

To get the object of the presenter and access to its methods, you need to use next method in your View:

//... (ExamplePresenter) getPresenter();
 //...

But, if you don't want to use converting, you can parametrize inheritable class with your presenter:

public class MainActivity extends FrogActivity<ExamplePresenter> {

@Override
  protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

setPresenter(ExamplePresenter.class);

//...
  
}

  //... 
}

In this case getting object of presenter will look like:

//... getPresenter();
 //...

It's absolutely the same with fragments:

public class TextFragment extends FrogFragment {

@Override
  public void onCreate(@Nullable Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setPresenter(ExamplePresenter.class);

//...
  
}
 
}

Getting object of the presenter:

//... (ExamplePresenter) getPresenter();
 //...

Parametrized class:

public class TextFragment extends FrogFragment<ExamplePresenter> {

@Override
  public void onCreate(@Nullable Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setPresenter(ExamplePresenter.class);

//...
  
}
 
}

Getting object of the presenter:

//... getPresenter();
 //...

Calling of method setPresenter can be done in other places, but you need to do it after calling super.onCreate(savedInstanceState); and before calling onResume(); .

Usage with RecyclerAdapter

First at all you need to create adapter, which will inherit from FrogRecyclerAdapter parametrized with Model, View and Presenter.

public class RecyclerAdapter extends FrogRecyclerAdapter<ExampleModel, ExampleViewHolder, ExamplePresenter> {

//... 
}

In the adapter you need to override three methods. The method of presenter creation. The method of ViewHolder creation. The method to getting model's id.

Also you need to create your own ViewHolder, which will inherit from FrogRecyclerHolder paramtrized with Presenter.

public class ExampleHolder extends FrogRecyclerHolder<ExamplePresenter>{

//... 
}

Your adapter is ready. To create and fill it with your data, use:

ExampleAdapter adapter = new ExampleAdapter();
 adapter.addAll(modelList);

Thanks to

android-arch-sample

License

  Copyright (C) 2017 BullyBoo
 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

A multicard menu that could be opened and closed with animation.

A fast and clean way of using Palette in lists.

Every artist needs a place where he can paint in peace and store his tools such as palette and swatches.

The Mobile Checker is a tool for Web developers who want to make their Web page or Web app work better on mobile devices.

A support library for the material design SeekBar in Android for API 16 and above.

Bitmap Merger is a simple project help you to merge two bitmaps without memory exceptions. The bitmaps are processed in background threads thereby taking the load away from UI thread. Along with merge, it also contains the image decoder for decoding images from resources/disk and are sampled to prevent OutOfMemoryError.

InstallFish is a multi platform app distribution system. Built to allow you to streamline your workflow and make the client testing process as simple as possible. It is simple, fast and effective.

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