我在使用按钮和图像方面遇到了一些困难。我有2个按钮,一个在另一个旁边,但第二个按钮显示错误的图像。它显示了带有一些工具的图像。
这是我的代码:
TextView categoriaText = new TextView(this);
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(LayoutParams.FILL_PARENT,
LayoutParams.WRAP_CONTENT);
params.addRule(RelativeLayout.ALIGN_PARENT_LEFT);
// use same id as defined when adding the button
params.addRule(RelativeLayout.LEFT_OF, 1001);
params.topMargin = top;
params.leftMargin = 30;
categoriaText.setLayoutParams(params);
categoriaText.setText(_listaCategorias.get(i).getNome());
categoriaText.setTextSize(20);
Button deleteBtn = new Button(this);
RelativeLayout.LayoutParams params2 = new RelativeLayout.LayoutParams(60,
60);
params2.addRule(RelativeLayout.ALIGN_PARENT_RIGHT);
params2.rightMargin = 80;
params2.topMargin = top;
deleteBtn.setLayoutParams(params2);
deleteBtn.setBackgroundResource(R.drawable.ic_coleccao);
// give the button an id that we know
deleteBtn.setId(1001);
Button editBtn = new Button(this);
RelativeLayout.LayoutParams params3 = new RelativeLayout.LayoutParams(60,
60);
// params2.addRule(RelativeLayout.RIGHT_OF, 1001);
params3.addRule(RelativeLayout.ALIGN_PARENT_RIGHT);
params3.topMargin = top;
editBtn.setLayoutParams(params3);
editBtn.setBackgroundResource(R.drawable.ic_edit);
这是一个截屏:
第二张图片不正确。
答案 0 :(得分:1)
更常见的是,R类中对资源的引用变得混乱。 如果您正在使用eclipse进行开发,请销毁生成的R类,并通过重新启动eclipse让它自动重建。