When i am using EditText in API 17 , It displays like below.
Is it possible to display the EditText as rectangular box like below in API 17 or should i use lower level API's
When i am using EditText in API 17 , It displays like below.
Is it possible to display the EditText as rectangular box like below in API 17 or should i use lower level API's
Try this in ur xml file in EditText
<EditText
android:id="@+id/edittext"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:maxLength="25"
android:background="@android:drawable/editbox_background"
/>
Focus on this line android:background="@android:drawable/editbox_background"
hope this will work.