I have the following code based on the example shown at Android devloper website

final EditText idInput =  new EditText(this);
        idInput.setHeight(50);
        idInput.setWidth(winSize.x / 4);
        idInput.setHint("enter ID");
        idInput.setVisibility(0x00);
        idInput.setOnKeyListener(new OnKeyListener()
        {
            public boolean onKey(View v, int keyCode, KeyEvent event)
            {
                // If the event is a key-down event on the "enter" button
                if ((event.getAction() == KeyEvent.ACTION_DOWN) &&
                    (keyCode == KeyEvent.KEYCODE_ENTER))
                {
                  // Perform action on key press
                  Toast.makeText(MainActivity.this, idInput.getText(), Toast.LENGTH_SHORT).show();
                  idInput.setVisibility(0x04);
                  return true;
                }
                return false;
            }
        });      

The code receives input from the edittext and shows it in a toast as expected. My problem is that I can not control the size of the EditText. It fills my whole screen. Is there a way of setting the size of the TextView. I am not having any issue with other View object that I display.

(judging from the number of EditText questions on here is is not as simple as it should be)

link|improve this question

78% accept rate
try to use maxLength in xml. It can control the size of the edittext – Rosalie Jan 16 at 5:13
when the edittext fills the whole screen, on focussed? or not focussed ? – Yugandhar Babu Jan 16 at 5:15
@Rosalie, I have tried .setmaxWidth and .setmaxHeight without success. I have no XML for this activity. – Squiggles Jan 16 at 5:22
@Yugandhar, when it is first made visible in fills the screen. When I set it invisible it disappears. – Squiggles Jan 16 at 5:24
ok. Did you try setMaxEms() or setMinEms() ? – Rosalie Jan 16 at 5:30
show 3 more comments
feedback

5 Answers

up vote 0 down vote accepted

I have a hunch that the code surrounding your example looks something like this:

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    final EditText idInput =  new EditText(this);
    idInput.setHeight(50);
    idInput.setWidth(winSize.x / 4);
    idInput.setHint("enter ID");
    idInput.setVisibility(0x00);
    idInput.setOnKeyListener(new OnKeyListener()
    {
        public boolean onKey(View v, int keyCode, KeyEvent event)
        {
            // If the event is a key-down event on the "enter" button
            if ((event.getAction() == KeyEvent.ACTION_DOWN) &&
                (keyCode == KeyEvent.KEYCODE_ENTER))
            {
              // Perform action on key press
              Toast.makeText(MainActivity.this, idInput.getText(), Toast.LENGTH_SHORT).show();
              idInput.setVisibility(0x04);
              return true;
            }
            return false;
        }
    });

    setContentView(idInput);
}

If so, your problem is that you cannot just attach a view directly to an Activity window without supplying LayoutParams as well. Otherwise, it adds in FILL_PARENT for both the layout width and height when attaching to the window and forces the view to fill the content space.

If you modify the last line to something like this:

setContentView(idInput, new ViewGroup.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));

You will see the EditText drop down to a more normal size and your adjustments on height/width will actually start to take effect. When layouts are coded in XML, this requirement is often forgotten since most people always use a root layout that fills the screen and habitually, apply layout_width and layout_height to everything else.

HTH

link|improve this answer
You're a genius! I used main.addView(idInput, new ViewGroup.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT)); and the EditText appears correct size top left. Using setContentView() hides my current view which I did not want. Where did you find the LayoutParams details? – Squiggles Jan 16 at 9:09
Are there LayoutParams to place the EditText where you want it? – Squiggles Jan 16 at 9:46
@Neil, from the code you mentioned it sounds like you do have at least one layout manager in your application, do you know which one (LinearLayout, FrameLayout, etc.)? Reason being the answer to your question "Are there LayoutParams to do X?" depends on the layout you are using. Perhaps you could post the entire section of code you are using to construct views and attach them to the Activity in your question. Also, you may benefit from giving this item in the SDK Docs a read: developer.android.com/guide/topics/ui/declaring-layout.html – Devunwired Jan 16 at 14:24
I am using a FrameLayout, I will do some reading. Thanks. – Squiggles Jan 17 at 9:55
Just read the description of FrameLayout and it tells me I can't do what I have been doing! I am using it because the AbsoluteLayout is deprecated and no other Layout seems to provide what I need. I have 1000 lines of code that works but developer.android.com/guide/topics/ui/layout-objects.html tells me I can't do it. – Squiggles Jan 17 at 10:10
show 4 more comments
feedback

Try using setMaxWidth(int)

http://developer.android.com/reference/android/widget/TextView.html#setMaxWidth(int)
link|improve this answer
I had tried that and it made no difference. The documentation clearly says it should. – Squiggles Jan 16 at 5:35
feedback

You can override the onMeasure function (in your custom view). Its the method which is called when the control's parent is laying its child control. Hv a look below...

@override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
{
int yourExpWidth = someoperation(widthMeasureSpec);
int yourExpHeight = someoperation(heightMeasureSpec);

setMeasuredDimension(yourExpWidth ,yourExpHeight );

}

Or you can keep your EditText static by defining it in the Activity's XML. And then using it in your program using findViewById(R.id.Editet)

link|improve this answer
feedback

Check inside this function

 idInput.setOnKeyListener(new OnKeyListener()
    {
        public boolean onKey(View v, int keyCode, KeyEvent event)
        {
            // If the event is a key-down event on the "enter" button
            if ((event.getAction() == KeyEvent.ACTION_DOWN) &&
                (keyCode == KeyEvent.KEYCODE_ENTER))
            {
              // Perform action on key press
              check her 
              if(idInput.getText().tostring.length<=MaximumLength Define by you)

              return true;
            }
            return false;
        }
    });      

There is dynamic method also present

        ImageView img1=(ImageView) findViewById(R.id.imageview);
    img1.setMaxHeight(100);
    img1.setMaxWidth(100);
link|improve this answer
@TofeeqAhmed, thanks but it is not the content length that is my problem it is the overall size of the view object. – Squiggles Jan 16 at 5:32
if you gave fix size like width=100,height=100,and singleline=true.Check it once please – Sameer Jan 16 at 5:36
No luck, looks like I am going to have to try the xml method. Not happy about it but what can you do? – Squiggles Jan 16 at 5:53
I have edited my answer check now.i have show for Imageview.For EditText same can be used – Sameer Jan 16 at 6:09
I am wondering if it somehow related specifically to the EditText. I have no problem with other View objects. – Squiggles Jan 16 at 6:14
show 1 more comment
feedback

It is use to control the size of the EditTextView.

editText.setLines(int lines);

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.