0
これは下のコードを使用していますが、高さと幅はすべての画面で異なります。共通高さ(サイズ= 34)と幅(サイズ= 34)Androidすべての解像度の一般的な高さと幅
public Drawable getDrawable(String source) {
int height = 34,
width = 34;
LevelListDrawable d = new LevelListDrawable();
int id = _context.getResources().getIdentifier(source, "drawable", _context.getPackageName());
Drawable empty = _context.getResources().getDrawable(id);
d.addLevel(0, 0, empty);
d.setBounds(0, 0, height, width);
return d;
}
ありがとうございました... –