How can I get two textboxes like this in android? By using Edittext I always get a box of old style.. Please help
With the help of the following xml I got it this far:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<solid android:color="#0193DE" />
<stroke
android:width="1.5dp"
android:color="#FFFFFF" />
<corners
android:bottomLeftRadius="2dp"
android:bottomRightRadius="2dp"
android:topLeftRadius="2dp"
android:topRightRadius="2dp" />
</shape>
How to get rid of the border lines on the top, left and right? I also want to display the hint in white color. Please help me with this too please..