Implementing an Android gradient -


i need implement gradient 1 shown below android gradient.

i know kind of gradient is.

how can build gradient using android drawables?

if know more gradients this, can find resources?

thanks in advance.

android background gradient

use one:

<shape xmlns:android="http://schemas.android.com/apk/res/android"  android:shape="rectangle" >    <gradient       android:type="radial"      android:centerx="50%"       android:centery="50%"       android:startcolor="#ff6ca941"       android:endcolor="#ff008080"       android:gradientradius="100"/>      <corners        android:bottomleftradius="0dp"        android:bottomrightradius="7dp"        android:topleftradius="0dp"        android:toprightradius="7dp" />  </shape> 

Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -