Android Open Source - sdk-render Indic Edit Text






From Project

Back to project page sdk-render.

License

The source code is released under:

GNU General Public License

If you think the Android project sdk-render listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package org.silpa.render;
/*w  w w.j a va  2s  .  c  o  m*/
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Rect;
import android.util.AttributeSet;
import android.widget.EditText;

/**
 * Created by sujith on 24/6/14.
 */
public class IndicEditText extends EditText {

    /**
     * Rectangle
     */
    private Rect mRect;

    /**
     * Script renderer object for rendering
     */
    private ScriptRenderer scriptRenderer;

    /**
     * Constructor
     *
     * @param context context of application
     */
    public IndicEditText(Context context) {
        super(context);
        init(context, null, 0);
    }

    /**
     * Constructor
     *
     * @param context context of application
     * @param attrs   attribute set
     */
    public IndicEditText(Context context, AttributeSet attrs) {
        super(context, attrs);
        init(context, attrs, 0);
    }

    /**
     * Constructor
     *
     * @param context  context of application
     * @param attrs    attribute set
     * @param defStyle default style
     */
    public IndicEditText(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        init(context, attrs, defStyle);
    }

    /**
     * @param context  context of application
     * @param attrs    attribute set
     * @param defStyle default style
     */
    private void init(Context context, AttributeSet attrs, int defStyle) {
        this.mRect = new Rect();
        this.scriptRenderer = new ScriptRenderer(context);
    }

    @Override
    protected void onDraw(Canvas canvas) {

        int count = getLineCount();
        String text = getText().toString();
        String[] textLines = text.split("\\n");

        if (text == null || text.length() == 0) {
            super.onDraw(canvas);
            return;
        }

        Rect r = mRect;
        for (int i = 0; i < count; i++) {
            int baseline = getLineBounds(i, r);
            String currentText = i < textLines.length ? textLines[i] : "";

            scriptRenderer.setCanvas(canvas);
            scriptRenderer.renderIndicText(currentText, r.left, baseline, (int) getTextSize(),
                    getCurrentTextColor());
        }
    }
}




Java Source Code List

org.silpa.render.IndicEditText.java
org.silpa.render.IndicTextView.java
org.silpa.render.ScriptRenderer.java