У меня есть XML-файл в качестве диалогового окна сообщения.
В нем у меня есть TextView.
Я использую эту программу в MyActivation для активации и создания диалогового окна.
protected void displayAllertBox() {
if (dialog1==null)
showDialog(ALLERT_DIALOG);
}
@Override
protected Dialog onCreateDialog(int id) {
switch (id) {
case ABOUT_DIALOG:
------ NOT important
return dialog;
case ALLERT_DIALOG:
AlertDialog.Builder builder1;
LayoutInflater inflater1 = (LayoutInflater) mContext
.getSystemService(LAYOUT_INFLATER_SERVICE);
View layout1 = inflater1.inflate(R.layout.windmessage,
(ViewGroup) findViewById(R.id.layout_root));
builder1 = new AlertDialog.Builder(mContext);
builder1.setView(layout1);
builder1.setMessage("http://www.limelect.com").setPositiveButton(
this.getString(R.string.ok),
new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int id) {
dialog.cancel();
}
});
dialog1 = builder1.create();
/* TextView KT= (TextView)findViewById(R.id.KnotText);
KT.setText("Knots "+Integer.toString( Speed[29]));
*/
return dialog1;
default:
return null;
}
}
Моя проблема
R.id.KnotText
- это текстовое сообщение, в которое нужно поместить текст во время выполнения
я получил
KT= null
я думал, что создание даст мне возможность вставлять текст
так как мне это сделать?