无法将现有布局解析为字段

时间:2014-10-17 13:28:59

标签: android android-layout layout-inflater

我有一个自定义视图,在我正在开发的游戏的某个时刻,我想向用户显示确认消息。对于确认消息,我在布局文件夹中创建了一个新的xml文件,在cistomised视图中,我试图引用该布局的游戏如下:

private void showConfirmation() {

LayoutInflater mLayoutInf = LayoutInflater.from(this.mContext);
View confMSG_View = mLayoutInf.inflater(R.layout.confirm_msg, null);
.....
.....
}

但是,在此步骤中,eclipse用红色强调R.Layout.confirm_msg,并说it can not be resolved to a field

请告诉我这里的错误。

0 个答案:

没有答案