Skip to content

Latest commit

 

History

History
54 lines (41 loc) · 1.49 KB

File metadata and controls

54 lines (41 loc) · 1.49 KB

EditCodeView

Bintray License: MIT

Installation

Gradle

compile 'com.bigbangbutton:editcodeview:1.0.4'

Customized attributes

Attrs Type
textSize dimension
textColor color
codeLength integer
codeHiddenMode boolean
codeHiddenMask string
underlineStroke dimension
underlineReductionScale float
underlineFilledColor color
underlineSelectedColor color
underlineBaseColor color
underlineCursorColor color
underlineCursorEnabled boolean
fontStyle enum

How to get code

EditCodeView editCodeView = (EditCodeView) findViewById(R.id.edit_code);
        editCodeView.setEditCodeListener(new EditCodeListener() {
            @Override
            public void onCodeReady(String code) {
                // ...
            }
        });

Tip

Use the paddingBottom that would raise the underline to the text

License

The library is distributed under the MIT LICENSE.