8

I had a strange problems during the set padding to EditText. xml looks like this:

<EditText
    android:layout_width="270dp"
    android:layout_height="55dp"
    android:ems="10"
    android:id="@+id/etEmail"
    android:textStyle="bold"
    android:layout_gravity="center_vertical"
    android:textColor="#FFFFFF"
    android:hint="Or Use your Email"
    android:inputType="textEmailAddress"
    android:layout_alignLeft="@+id/textView6"
    android:layout_alignStart="@+id/textView6"
    android:textColorHint="#FFFFFF"
    android:background="@drawable/line_white"
    android:paddingLeft="16.5dp"
    android:layout_marginTop="10dp"
    android:paddingRight="2dp" />

Here is the screenshot from Samsung Note 2 (Android 5.0.1):

enter image description here

... and LG G3 (Android 4.4.2):

enter image description here

As you can see, android:paddingLeft doesn't work for LG.

What could be the reason?

Thanks.


UPD: Layout bounds (LG):

enter image description here

Mark Korzhov
  • 2,109
  • 11
  • 31
  • 63

3 Answers3

2

EditText padding via xml doesn't work after update to API level 21.
But EditText padding works, if it define programmatically.

editText.setPadding(10, 0, 0, 0);

You can track this issue on android issue tracker.

There are some other alternates too, discussed in the issue tracker thread.

Salmaan
  • 3,543
  • 8
  • 33
  • 59
2

I've noticed this on the HTC One X. This doesn't fix your particular issue, but changing paddingStart to paddingLeft worked for me.

Tom
  • 6,946
  • 2
  • 47
  • 63
0

This is dpi device problem. Make use of "dimen" folder, give different dp for various device screen sizes. Sure this will solve your problem.

android:paddingLeft="@dimen/yourValueName"
Harish
  • 63
  • 6