editText lineSpacingExtra issue

Viewed 12027

I have an editText with layout:

<EditText
        android:id="@+id/edittext"
        android:layout_height="wrap_content"
        android:layout_width="fill_parent"
        android:text="test"
        android:layout_margin="5dp"
        android:gravity="left|center_vertical"
        android:lineSpacingExtra="10dp"
        android:lineSpacingMultiplier="1"
        />

but the text is not centered vertically because of lineSpacingExtra. Here is how it looks:

enter image description here

how to make it so I keep lineSpacingExtra tag but have text centered vertically?

5 Answers
Related