maim.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context=".TestActivity" > <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" style="@style/diagonalStyle"> </RelativeLayout>
style.xml
<resources xmlns:android="http://schemas.android.com/apk/res/android"> <style name="diagonalStyle"> <item name="android:background">@drawable/background</item> </style>
background.xml
<item> <rotate android:fromDegrees="45" android:toDegrees="45" android:pivotX="50%" android:pivotY="50%" > <shape android:shape="line" android:top="1dip" > <stroke android:width="1dip" android:color="#FF0000" /> </shape> </rotate>
try this it works
source share