I created a custom EditText (actually, I just set a background drawable). The problem is that its text is always top-aligned, and I want it to be vertical-center-aligned. I've already tried to set its gravity to CENTER_VERTICAL, but it doesn't work. This is the drawable I created:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
   android:shape="rectangle" android:gravity="center_vertical">
 <solid android:color="#FFFFFF"/>
 <stroke android:width="1dp" android:color="#88BA52" />  
 <corners
     android:bottomRightRadius="10dp"
     android:bottomLeftRadius="10dp"
     android:topLeftRadius="10dp"
     android:topRightRadius="10dp"/>
</shape>

And here's how I create it:

searchEditText = new EditText(getContext());
searchEditText.setTextSize(12);
searchEditText.setSingleLine();
searchEditText.setGravity(Gravity.CENTER_VERTICAL);
searchEditText.setHint(R.string.search_hint);
searchEditText.setBackgroundDrawable(
        getResources().getDrawable(R.drawable.search_field));
addView(searchEditText);
link|improve this question

80% accept rate
feedback

2 Answers

searchEditText.setGravity(Gravity.CENTER | Gravity.LEFT); 

This might help

link|improve this answer
Thank you for the reply, Markiz. But unfortunately, it didn't help. Actually, I'm setting it on its component like this: left = 10; top = 10; right = width - 10; bottom = top + 45; searchEditText.layout(left, top, right, bottom); I suspect that this custom height is screwing it up. But I don't know how to solve it. – Flávio Faria Feb 16 '11 at 14:28
Yea, i do not see any special EditText methods to do that.. =( Sorry – Markiz Lonkly Feb 16 '11 at 14:50
feedback

I am experiencing exactly the same problem. And I have absolutely no clue what is going on. Note that the EditText is added to a ViewGroup.

However, I have a EditText that is inside a PopupWindow and setGravity() works well (TOP, BOTTOM, CENTER_VERTICAL all work as expected).

Could this be a bug in Android?

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.