此问题仅发生在随机设备上。例如,我的 G Nexus 正确显示图标,但我朋友的没有。
我的drawables全部存储在“drawables”文件夹中,而不是具有特定像素密度的那些。
它正确显示其他图标。只有我使用 Drawables 以编程方式创建的那个才会出错。
日志猫似乎没有抛出任何异常。
出于某种原因,仅在某些设备上,我尝试绘制的图标显示为黑色矩形。这只发生在我第一次转换为 Drawable 的图标上。我的代码如下:
public static class GridItem {
public String text;
public Drawable image;
public Intent intent;
public GridItem(String text, Drawable Image, Intent intent) {
this.text = text;
this.image = image;
image.setBounds(0, 0, 160, 160);
this.intent = intent;
}
}
以下是我创建 Drawable 的方法:
gridItems.add(new GridItem("Schedule", getResources().getDrawable(R.drawable.schedule),
new Intent(this, ScheduleActivity.class)));
这是 BaseAdapter 类:
public class GridMenuAdapter extends BaseAdapter {
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View item = getLayoutInflater().inflate(R.layout.grid_item_layout, null);
item.setPadding(0, 50, 0, 40);
GridItem current = gridItems.get(position);
TextView label = (TextView)item.findViewById(R.id.item_label);
label.setText(current.text);
label.setCompoundDrawables(null, current.image, null, null);
label.setCompoundDrawablePadding(32);
item.setMinimumHeight(300);
return item;
}
@Override
public final int getCount() {
return gridItems.size();
}
@Override
public Object getItem(int position) {
return gridItems.get(position);
}
@Override
public long getItemId(int position) {
return position;
}
}