I am developing an app where I need to show a count. This count is going to show for example a "4", then a "4 + 1", then finally a "5". I have .png images that I want to use as background to the numbers, so that I can easily show anything up to "99" if I need to.

So basically, I would like to assign a drawable background to a number. Is a custom font the way to go? Here typeface and view group with assigned strings is mentioned. Anyone tried this?

link|improve this question

My problem is exactly as yours (link you provided), want to use images as numbers. Still looking for an answer. – evilone May 29 '11 at 8:39
feedback

2 Answers

up vote 2 down vote accepted

Actually you just need an array of size 10:

Resources res = getResources();
Drawable numbers = new Drawable[10]{
   new Drawable(res, R.drawable.zero),
   new Drawable(res, R.drawable.one),
   new Drawable(res, R.drawable.two),
   ...
   new Drawable(res, R.drawable.nine)
};

and to get them just use:

int i = 5;
Drawable image = numbers[i];

If the number has 2 digits then you can put in 2 pictures etc.

You can also make a very big array, but that would honestly be a waste of lines. Also the space required when you only use 10 pictures is significantly smaller

link|improve this answer
Hi! I used this, with a tweak: int[] numbers = {R.drawable.zero, R.drawable.one, R.drawable.four2x, ... R.drawable.nine2x }; Drawable d = getResources().getDrawable(numbers[0]); Thanks! – kakka47 May 29 '11 at 15:13
feedback
HashMap<char, Drawable> charMap = new HashMap(Character, Drawable>();
Resources res = getResources();
charMap.put('0', new Drawable(res, R.drawable.img_0));
charMap.put('1', new Drawable(res, R.drawable.img_1));
// the rest of the characters you want to use

When you want to retrieve the correct image for a character:

char c = '0';
Drawable charImage = charMap.get(c);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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