I have a problem... I created this button:
<Button
android:layout_width="0dp"
android:layout_weight="50"
android:layout_height="120dp"
android:id="@+id/btnTriangle"
android:clickable="true"
android:focusableInTouchMode="true"
android:background="@drawable/TriangleShapeButton" />
Now I want to add a image to that button, but adding this line doesnt work:
android:src="@drawable/triangle3"
Is it possible to add this image without using an ImageButton?