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

Popular posts from this blog

javascript - Slick Slider width recalculation -

jsf - PrimeFaces Datatable - What is f:facet actually doing? -

angular2 services - Angular 2 RC 4 Http post not firing -