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.
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
Post a Comment