i have edittext for user name, password, server name with hint as "required", but i have a issue, the text size is different whereas in coding it is same only.
how to over come that,
my xml code for textview alone is,
<EditText
android:id="@+id/sapuser"
android:layout_column="2"
android:layout_marginRight="15dip"
android:hint="Required"
android:paddingLeft="5dip"
android:singleLine="true"
android:text=""
android:width="150dip" />
<EditText
android:id="@+id/password"
android:layout_column="2"
android:layout_marginRight="15dip"
android:hint="Required"
android:paddingLeft="5dip"
android:password="true"
android:singleLine="true"
android:text="" />
<EditText
android:id="@+id/host"
android:layout_column="2"
android:layout_marginRight="15dip"
android:hint="Required"
android:paddingLeft="5dip"
android:singleLine="true"
android:text=""
android:width="150dip" />