eclipse - Hint word getting cut in android -
how make hint inside editview positioned center without cutoff , want make bottom line of editview hidden how make it,below code
<textview android:id="@+id/phnum_text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centervertical="true" android:fontfamily="font sans" android:text="@string/cell_num_label" android:textcolor="@color/labelcolor" android:textsize="15sp" /> <edittext android:id="@+id/txt_num" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centervertical="true" android:layout_torightof="@+id/phnum_text" android:ems="10" android:hint="enter number" android:textsize="15sp" > <requestfocus /> </edittext> </relativelayout>
Comments
Post a Comment