我正在创建一个基本上创建基于Rects和字形的菜单的程序。出于某种原因,此代码适用于模拟器和我的朋友电话,但它不适用于我的。我开始相信也许我的手机太老了(是彗星系列)。然而,就像任何一个好的手机应用程序开发,我希望我的应用程序可以在任何类型的Android手机上工作,所以我非常彻底地研究这个问题。我收到一个错误说:
引起:java.lang.IllegalArgumentException:x + width必须是< = bitmap.width()
我使用位图的唯一地方是我在这里发布的字形类:
package text;
import java.util.HashMap;
import java.util.Map;
import android.graphics.Bitmap;
import android.graphics.Canvas;
public class Glyphs {
private Bitmap bitmap;
private Map<Character, Bitmap> glyphs = new HashMap<Character, Bitmap>(62);
private int width;
private int height;
private char[] charactersL = new char[] { 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z' };
private char[] charactersU = new char[] { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z' };
private char[] numbers = new char[] { '1', '2', '3', '4', '5', '6', '7', '8', '9', '0' };
public int getWidth(){
return width;
}
public int getHeight(){
return height;
}
public Glyphs(Bitmap bitmap){
super();
this.bitmap = bitmap;
this.width = 12;
this.height = 18;
for(int i = 0; i < 26; i++){
glyphs.put(charactersL[i], Bitmap.createBitmap(bitmap, 0 + (i * width), 0, width, height));
}
for(int i = 0; i < 26; i++){
glyphs.put(charactersU[i], Bitmap.createBitmap(bitmap, 0 + (i * width), 24, width, height));
}
for(int i = 0; i < 10; i++){
glyphs.put(numbers[i], Bitmap.createBitmap(bitmap, 0 + (i * width), 48, width, height));
}
}
public Bitmap getBitmap(){
return bitmap;
}
public void drawString(Canvas canvas, String text, int x, int y){
if(canvas == null){
//return a tag
}
for(int i = 0; i < text.length(); i++){
Character ch = text.charAt(i);
if(glyphs.get(ch) != null){
canvas.drawBitmap(glyphs.get(ch), x + (i * width), y, null);
}
}
}
}
但是,这个程序在其他手机上运行得非常好。我不确定为什么它会在我的旧手机上崩溃。
答案 0 :(得分:0)