我正在使用被称为公共活动的基类,因为我在每个活动中返回String。使用以下代码。
txtHeader = (TextView)findViewById(R.id.txtHeaderText);
txtHeader.setText(getScreenHeader());
我将返回空字符串
protected String getScreenHeader(){
return "";
}
在另一项活动中,我会这样做。
public final static String SCREEN_NAME = "Dashboard";
@Override
protected String getScreenHeader() {
return SCREEN_NAME;
}
我如何为IMAGE-VIEW执行此操作。
抱歉我的英文。
Thansks, 尼基尔。
答案 0 :(得分:1)
您需要使用Bitmap对象,例如:
Bitmap b = getBitmapImage();
ImageView img = (ImageView )findViewById(R.id.imgView);
img.setImageBitmap(b);