Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 748 Bytes

README.md

File metadata and controls

33 lines (26 loc) · 748 Bytes

DialogMaker

This is simple DialogMaker. It will help to keep the code clean when you are dealing with DialogBoxes

Usage:

	
HashMap params = new HashMap();
		params.put(Keys.BUTTON_1, "YES");
		params.put(Keys.BUTTON_2, "NO");
		params.put(Keys.MESSAGE, "This is a test");

		new DialogMaker(this, params, Type.STANDARD) {

			@Override
			protected void dealWithTheButton1() {
				Log.i(TAG,"Button 1 clicked");
			}

			@Override
			protected void dealWithTheButton2() {
				Log.i(TAG,"Button 2 clicked");
			}

		};

Please use the sample. for more information. You are more than welcome to edit the class to fit your need. This class is not supporting a custom Layout yet.

H.