我正在尝试将背景设置为某些自动创建的按钮。我已经在这里ContextWrapper cw = new ContextWrapper(getApplicationContext());
directory = cw.getDir("archivos", MainActivity.MODE_PRIVATE);
我想将背景设置为
Button botonCanal = new Button(this);
botonCanal.setLayoutParams(lp);
String dive = String.valueOf(Environment.getExternalStorageDirectory());
int id = MainActivity.this.getResources().getIdentifier(imageName, "drawable", directory+"");
botonCanal.setBackgroundResource(id);
botonCanal.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
}
});
如何从/data/user/0/com.example.fcv.tvprueba/app_archivos
设置图像所在的位置。