Reputation: 3608
What is the best way to make more room (increase width of the bitmap) in the bitmap without distorting or scaling the existing data in Android. I'm tried various method and still can't figure out how to do it
Upvotes: 1
Views: 254
Reputation: 27421
Create an empty bitmap which is wider than your existing one, and draw the original bitmap onto the empty bitmap,
Upvotes: 1