2

我正在玩 MonoTouch.Dialog 并编写了一些代码来显示一些推文。问题是表格单元格太小,当我异步StyledMultilineElement加载s时,单元格都聚集在一起。当我同步加载它们时它们看起来绝对完美(即没有/部分)QueueUserWorkItemInvokeOnMainThread

有没有办法让表格单元格重新计算它们的高度?

// This method is invoked when the application has loaded its UI and its ready to run
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{           
    window.AddSubview(navigation.View);

    var tweetsSection = new Section("MonoTouch Tweets"){
        new StringElement("Loading...") //placeholder
    };

    var menu = new RootElement("Demos"){
        tweetsSection,
    };

    var dv = new DialogViewController(menu) { Autorotate = true };
    navigation.PushViewController(dv, true);                

    window.MakeKeyAndVisible();

    // Load tweets async
    UIApplication.SharedApplication.NetworkActivityIndicatorVisible = true;
    ThreadPool.QueueUserWorkItem(delegate {
        var doc = XDocument.Load("http://search.twitter.com/search.atom?q=%23MonoTouch");
        var atom = (XNamespace)"http://www.w3.org/2005/Atom";

        var tweets = 
            from node in doc.Root.Descendants(atom + "entry")
            select new { 
                Author = node.Element(atom + "author").Element(atom + "name").Value, 
                Text =  node.Element(atom + "title").Value
            };
        var newElements = 
                from tweet in tweets
                select new StyledMultilineElement(
                    tweet.Author, 
                    tweet.Text);

        InvokeOnMainThread(delegate {
            UIApplication.SharedApplication.NetworkActivityIndicatorVisible = false;
            tweetsSection.Remove(0);                                    
            tweetsSection.Add(newElements.Cast<Element>().ToList());    
        });
    });

    return true;
}
4

1 回答 1

3

尝试在对话框视图控制器UnevenRows的顶级Root元素上设置属性,在本例中为“菜单”:

menu.UnevenRows = true
于 2011-09-18T01:02:06.283 回答