android - I want to design login n sign up(register) page like shown in image pz give mi source code -
please give me code design edit text box, button round corners, etc. shown in image.
you can use xml drawable , use background
first go drawable directory , create new drawable resource file , name myroundbutton copy code it
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <stroke android:color="#ff66cc" android:width="2dp"/> <corners android:radius="10dp"/> </shape>
then add button background
android:background="@drawable/myroundbutton"
now can change corner radius changing
android:radius="somevalue"
and border color by
android:color="#somecolor"
Comments
Post a Comment