Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want make a custom button in android left solid arrow (only arrow shape not its background).

enter image description here

How can I create this arrow button using shape drawable XML in android.

I know how to create rectangle button but not arrow.

Anybody who knows it please tell me how to do.

share|improve this question

1 Answer

Sorry I can't post code, only show you where to go. But the ultimate answer is to use a pathshape button. Then it handles everything for you.

Create the paths with developer.android.com/reference/android/graphics/Path.html the shapes with developer.android.com/reference/android/graphics/drawable/shapes/PathShape.html and the shape with developer.android.com/reference/android/graphics/drawable/shapes/Shape.html

That way you can do it even in XML. And there's a variety of arc path methods. Check it out!

share|improve this answer
This isn't useful with no code. – Brett Mar 19 at 18:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.