我有两个活动,一个只有一个巨大的列表视图,另一个有一个纯文本和按钮。
这个“newRoll”活动需要返回一个添加到 ObservableCollection 的字符串,我还没有实现 listView 更新的部分但是使用 logcat,我可以看出没有任何东西被添加到包含所有项目的 ObservableCollection。从我得到的信息来看,我对意图的工作方式有什么误解吗?
主要活动:
//upon clicking any item in the listView this runs:
Intent NewRoll = new Intent(this, typeof(NewRoll));
StartActivityForResult(NewRoll, requestCode);
protected void onActivityResult(int requestCode, int resultCode, Intent data)
{
//just holds the string
holder = data.GetStringExtra("roll_name");
//adds it to an observable collection
rolls.Add(holder);
//me trying to get something back
Log.Info(rolls.Count.ToString(), "Roll Added");
Log.Info(holder, "Please?");
}
新卷:
//on button click
//get whatever is in the plaintext
newRoll = rollName.Text;
data.PutExtra("roll_name",newRoll);
SetResult(Result.Ok, data);
Finish();
翻翻过去那场雪
斯蒂芬大帝
相关分类