Skip to content
This repository was archived by the owner on Apr 29, 2024. It is now read-only.

ml-archive/LimeLight

Repository files navigation

LimeLight


Version: 1.0

Author: Fuzz Productions

##Introduction


LimeLight is a different kind of help creation tool for Android applications. It creates interactable and context-driven help systems to guide users.

##Note


LimeLight requires some level of configuration and is not a plug-in-play library.

##How to use


####Add to your application:

Include it in your project as a library and then modify the following methods in your main activity:

        @Override
        protected void onResume() {
            super.onResume();
            LimeLight.onResume(this);
        }

        @Override
        protected void onPause() {
            super.onPause();
            LimeLight.onPause();
        }

        @Override
        public void onWindowFocusChanged(boolean hasFocus) {
            super.onWindowFocusChanged(hasFocus);
            LimeLight.onWindowFocusChanged(this, hasFocus);
        }

        @Override
        public boolean onCreateOptionsMenu(Menu menu) {
            LimeLight.onCreateOptionsMenu(this, menu);
            return super.onCreateOptionsMenu(menu);
        }  

Run the application, and LimeLight's UI menu should appear on top.

#####For More Information and Advanced Uses Refer to wiki at https://github.com/fuzz-productions/LimeLight/wiki

##License This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0, as well as to the Additional Term regarding proper attribution. The latter is located in Term 11 of the License. If a copy of the MPL with the Additional Term was not distributed with this file, You can obtain one at http://static.fuzzhq.com/licenses/MPL

About

A visual help creation tool for Android Applications

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages