How to make android EditText smaller than default in height?
How to make android EditText smaller than default in height? If I change the height, I can't see my text, but it has extra blank on bottom. bhatt4982 EditText has a default padding set. Try this, <EditText android:text="Any Text" android:layout_width="fill_parent" android:layout_height="16dp" android:padding="2dp" android:background="#FFF" android:textSize="10dp" /> learn_andrd Use android:textAppearance="?android:attr/textAppearanceSmallInverse" For further reference, see this : http://developer.android.com/guide/topics/ui/themes.html I wasn't really satisfied with any of the answers there