Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Draw triangle background in android

I need to draw a background of layout as a triangle, like you can see in the picture.

enter image description here

I've found an example where they do something similar, but I don't know how to adapt it to my case. Here is the example

Can anyone help me? Best.

like image 684
aloj Avatar asked Apr 15 '14 10:04

aloj


1 Answers

Here is an example of a drawable resource with a triangle in the right bottom corner in front of an image. As the image I used the default android launcher icon. You can use any other image.

Create triangle.xml file in res/drawable like this:

<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item
    android:drawable="@drawable/ic_launcher">
</item>
<item>
    <rotate
        android:fromDegrees="-45"
        android:toDegrees="0"
        android:pivotX="150%"
        android:pivotY="20%" >
        <shape
            android:shape="rectangle" >
            <solid android:color="#ff0000" />
        </shape>
    </rotate>
</item>
</layer-list>

Then use it as background attribute of a view:

android:background="@drawable/triangle"
like image 127
Onik Avatar answered Oct 21 '22 23:10

Onik