Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8144811
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T13:28:53+00:00 2026-06-06T13:28:53+00:00

I have a custom EditText MomentumEditText that I have in a layout in xml

  • 0

I have a custom EditText MomentumEditText that I have in a layout in xml (fragment_edit_text.xml):

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <com.frazerm.momentum.MomentumEditText
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/writing_edittext"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</RelativeLayout>

I can successfully inflate and display the layout in a fragment, but trying to get the MomentumEditText using View.findViewById(R.id.writing_edittext) returns null.

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    // Inflate the layout for this fragment
    View root = inflater.inflate(R.layout.fragment_edit_text, container, true);
    MomentumEditText editText = (MomentumEditText) root.findViewById(R.id.writing_edittext);
}

I have also tried to get the MomentumEditText from onStart(), but it still returns null.

Edit = I tried replacing the custom EditText in the xml with a plain EditText, and findViewById() works! here is MomentumEditText:

package com.frazerm.momentum;

import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.Rect;
import android.text.Editable;
import android.text.TextWatcher;
import android.util.AttributeSet;
import android.view.Gravity;
import android.view.MotionEvent;
import android.widget.EditText;

public class MomentumEditText extends EditText  {

boolean moveCursorDisabled = true;
boolean deleteCharsDisabled = true;

private static Paint linePaint;
private static Paint marginPaint;
MomentumEditText thisEditText = this;

Editable currentText;

public MomentumEditText(Context context, AttributeSet attrs) {
    super(context);

    setCursorVisible(true);
    this.setGravity(Gravity.TOP);
    TextWatcher inputTextWatcher = new TextWatcher() {
        CharSequence textToAdd = "";
        boolean charWasDeleted = false;
        public void beforeTextChanged(CharSequence s, int start, int count, int after)  {
            if (moveCursorDisabled) {
                if( count > after ) {
                    textToAdd = s.subSequence(start + after, start + count);
                    charWasDeleted = true;
                }
            }
        }

        public void onTextChanged(CharSequence s, int start, int before, int count) {

        }

        @Override
        public void afterTextChanged(Editable s)    {
            if (moveCursorDisabled) {
                if (charWasDeleted == true) {
                    charWasDeleted = false;
                    s.append(textToAdd);
                }
                else    {
                    thisEditText.setSelection( thisEditText.getText().length() );
                }
            }
        }

    };
    this.addTextChangedListener(inputTextWatcher);

}

//disables ability to move the cursor to other parts of the text
@Override
public boolean onTouchEvent(MotionEvent event)
{
    if (deleteCharsDisabled)    {
        final float eventX = event.getX();
        if( getSelectionStart() != eventX )
        {
            super.onTouchEvent(event);
            thisEditText.setSelection( thisEditText.getText().length() );
            return true;
        }
        return super.onTouchEvent(event);
    }
    return super.onTouchEvent(event);
}

@Override
protected void onDraw(Canvas canvas) {
    linePaint = new Paint();
    linePaint.setColor(0x77777777);
    //linePaint.setStyle(Style.STROKE);

    marginPaint = new Paint();
    marginPaint.setColor(0x99FF4444);
    //marginPaint.setStyle(Style.STROKE);

    Rect bounds = new Rect();
    int firstLineY = getLineBounds(0, bounds);
    int lineHeight = getLineHeight();
    int totalLines = Math.max(getLineCount(), getHeight() / lineHeight);

    for (int i = 0; i < totalLines; i++) {
        int lineY = firstLineY + i * lineHeight + dip(2);
        canvas.drawLine(0, lineY, bounds.right, lineY, linePaint);
    }


    canvas.drawLine( (float) dip(64), (float) 0, (float) dip(64), getHeight(), marginPaint );

    super.onDraw(canvas);
    setPadding(dip(64), 0, 0, 0);
}

public void setCursorMoveAllowed(boolean allowed)   {
    moveCursorDisabled = !allowed;
    setCursorVisible(allowed);
    return;
}

public void setBackspaceAllowed(boolean allowed)    {
    deleteCharsDisabled = !allowed;
    return;
}

public boolean superTouchEvent(MotionEvent event)   {
    return super.onTouchEvent(event);
}

public int dip ( int dip )  {
    float d = this.getResources().getDisplayMetrics().density;
    int pixels = (int)(dip * d);        
    return pixels;

}

}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T13:28:54+00:00Added an answer on June 6, 2026 at 1:28 pm

    Because you are extending a current view you need to override all the constructors that can be used. Try:

    public class MomentumEditText extends EditText  {
    
        public MomentumEditText(Context context) {
            super(context);
            init();
        }
    
        public MomentumEditText(Context context, AttributeSet attrs) {
            super(context, attrs); // This is the constructor used by XML (you were missing the super call)
            init();
        }
    
        public MomentumEditText(Context context, AttributeSet attrs, int defStyle) {
            super(context, attrs, defstyle);
            init();
        }
    
        private void init(){
             setCursorVisible(true);
             // your other code
        }
    }
    

    Reference: http://developer.android.com/reference/android/widget/EditText.html (Public Constructors)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created a custom listView with the row as follows: <RelativeLayout xmlns:android=http://schemas.android.com/apk/res/android android:layout_width=fill_parent
I have custom component that I can place in my layout file (XML) for
I have custom gallery. Gallery represents items that are frame layout. There are one
I have an Edit Text that is defined as follows. <EditText android:layout_width=fill_parent android:layout_height=wrap_content android:maxLines=1
I have created a custom AlertDialog with multiple EditText fields using a custom layout.
I have a EditText in a layout with a white background. On Android 2.x,
I have a GridView that displays several dozen rows worth of a custom layout,
I have a Custom Dialog that has an EditText at the bottom of the
For my project i have an a custom EditText view that extends EditText. I
So basically I have an Activity with a layout that shows my custom SurfaceView

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.