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

I'm creating an Android application. I need to override the draw method on a number of UI classes to create a custom appearance. These classes all subclass View. I'm wondering what the best way to do this is. I'd like to be able to reuse code as much as possible, so I'm looking for help in organizing things. As I see it right now, I have 2 options:

Option 1 - Subclass Everything

If I want to use LinearLayout, I create CustomLinearLayout. If I want to use ImageView, I create CustomImageView. On each of these custom classes, I override draw exactly the same way. This doesn't seem efficient because I'm repeating code and extending a number of classes which do almost nothing.

Option 2 - Subclass a Super Class

My original thought was to extend View and create CustomView, because it's already a superclass of all the classes I want to use. This, however, doesn't work because all the existing subclasses I want to use are still extending View, not CustomView.

Is there a better way to do this? Am I missing something?

share|improve this question
What exactly are you trying to achieve in the end? – GraphicsMuncher Nov 8 '12 at 17:58
   
Pattern: create interface. – Roman C Nov 8 '12 at 17:59
I'm overriding draw on a number of subclasses. I'm then grabbing a bitmap of the view and modifying it to give the appearance of degraded quality. This "problem" is something I've come across a few times now, so I want to understand if there is a better way to organize my project. – raydowe Nov 8 '12 at 18:01
@Roman C: Can you elaborate? Wouldn't I still have to create all the new classes and implement the same functionality that's happening in my overridden draw? – raydowe Nov 8 '12 at 18:02
1  
Have an interface and the commonalities across all will be put into an abstract class and you will have custom implementations of this. – Ajay George Nov 8 '12 at 18:07
show 1 more comment

1 Answer

up vote 4 down vote accepted

One possible solution would be to extract your draw logic into a separate class DrawingCode. This could contain a static method or you could even use instances of DrawingCode to customize your drawing code with other parameters. Of course you'll still have to overwrite the draw() method, but only write one line of code to call DrawingCode.draw(param1, param2). This way you get to store your drawing code in one central place and don't repeat yourself.

share|improve this answer
Looks like this is the best solution. I still have to create subclasses for everything I want to draw differently, but at least all the heavy lifting is one in one place. – raydowe Nov 8 '12 at 18:15

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.