fluffy-events


Source link: https://github.com/alexvasilkov/fluffy-events

Deprecated

This library is not supported, consider using Handler-based Events.

Fluffy Events

Simple events bus ( publish–subscribe) implementation based on regular Android BroadcastReceivers mechanism.

Usage

First of all you should initialize EventsBus inside your Application class:

public final class MyApplication extends Application {

  @Override
  public void onCreate() {

super.onCreate();

EventsBus.init(this);

  
}
 
}
 

To receive events you'll need to register a listener:

int regId = EventsBus.register(listener);
 

When you're done listen to the events you need to unregister from events bus using regId value received from register() method:

EventsBus.unregister(regId);
 

For activities it is recommended to register in the onCreate() (or in onPostCreate()) method and unregister in onDestroy() method.
For fragments it is onCreateView() ( onViewCreated()) and onDestroyView() methods respectively.

Fluffy Events uses integer identifiers for events and Bundle as parameters holder.
So it is recommended to declare you events ids and events parameters keys in res/events.xml:

<?xml version="1.0" encoding="utf-8"?> <resources>

<!-- Events ids -->
  <item type="id" name="my_event1"/>
  <item type="id" name="my_event2"/>

<!-- Params keys -->
  <string name="param_message">message</string>  </resources> 

or to create separate java class with constants:

public final class Events {

public static final int MY_EVENT1 = 1;
  public static final int MY_EVENT2 = 2;

public static final String PARAM_MESSAGE = "message";  
}
 

Now you can start using bus to send events:

Bundle params = new Bundle();
 params.putString(Events.PARAM_MESSAGE, "Hello");
 EventsBus.send(Events.MY_EVENT1, params);
 

and to receive them in your registered listener:

@Override public void onEvent(int eventId, Bundle params, boolean isBroadcasted) {

  switch (eventId) {

case Events.MY_EVENT1:

 String msg = params.getString(Events.PARAM_MESSAGE);

 Toast.makeText(context, msg, Toast.LENGTH_SHORT).show();

 break;
  
}
 
}
 

Available methods:

send(int eventId);
  send(int eventId, Bundle params);
  send(int eventId, String receiverId);
  send(int eventId, String receiverId, Bundle params);
  sendSticky(int eventId);
  sendSticky(int eventId, Bundle params);
  sendSticky(int eventId, String receiverId);
  sendSticky(int eventId, String receiverId, Bundle params);
 

How to build

You need Maven to build the project. Just run mvn clean install from project's root, jar file will be generated into target folder.

License

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

Modern OpenGL/ES examples in Java are few and far between and this collection of demos showcases what is possible with OpenGL ES 3.0 / 3.1 + AEP. The purpose is to inform developers, but also provide a testbed for cross-device testing between various mobile GPUs.

This repo provides a concise framework and helper utilities to leverage modern OpenGL/ES in Java for Android. The purpose is to inform developers, but also provide a testbed for cross-device testing between various mobile GPUs.

GameThrive provides Push Notification delivery and automation. This platform has SDKs for iOS, Android, Windows Phone, Unity, Phonegap, Marmalade, Cocos2D & more!

Once you start tugging on the thread of the master-detail pattern, you quickly realize that there are many other design patterns that Google recommends that would affect your implementation, such as using contextual action bars (a.k.a., action modes) for operations on content. Getting all of this design guidance to work, and dealing with classic Android challenges like configuration changes, results in a lot of infrastructure code, before you even begin to start writing actual business logic for the app.

This library is designed to supply that infrastructure code, leaving you free to focus more on what makes your app unique or otherwise important.

This project offers a port of MediaRouteActionProvider, and its support classes, to work with native API Level 11+ fragments and the action bar. These were ported from the mediarouter Android library project, where these classes require the appcompat action bar and, hence, the fragment backport.

Deprecated

MergeAdapter accepts a mix of Adapters and Views and presents them as one contiguous whole to whatever ListView it is poured into. This is good for cases where you have multiple data sources, or if you have a handful of ordinary Views to mix in with lists of data, or the like.

Simply create a MergeAdapter and call addAdapter(), addView(), or addViews() (latter accepting a List), then attach your adapter to the ListView.

There is also MergeSpinnerAdapter for use with Spinner widgets.

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