0

I am trying to draw textview rectangle shape with bottom shadow and rightbottom corner gradient.which look like page folded at right bottom corner I have tried this,but this giving me right part of shape displaying black, i want only rightbottom corner to be black.

    <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<gradient 
android:type="linear"
android:centerX="93%" 
android:startColor="#FFffff00" 
android:centerColor="#FFffff00" 
android:endColor="#FF000000" 
android:angle="315"/>
</shape>

please help thanks

sandy
  • 97
  • 2
  • 14

1 Answers1

0

Create a background image according to your requirements and set it to your textview.

Barışcan Kayaoğlu
  • 1,294
  • 3
  • 14
  • 35