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;
}
謝謝你的工作...... –