我正在開發一個項目,我們正在使用MvvmCross框架。該項目應該在2月份完成。我們想知道我們是否應該等待AutoView作爲跨平臺UI解決方案,否則將會很快到來?我應該等待AutoView嗎?
我們現在的問題是我們希望能夠動態地構建BindableListView。然後列表中的每一項都可以有不同的佈局和視圖集,例如,當我有任意順序的字符串和整數列表時,BindableListView將顯示每個字符串的TextView和每個int的數字選擇器。
事情是這樣的:
public ElementDescription DefaultView()
{
var auto = new RootAuto(caption: "TestRootElement")
{
new SectionAuto(header: "Test Info")
{
foreach(item s in list)
{
if(s.GetType() == typeof(string))
new StringAuto();
if(s.GetType() == typeof(int)
new IntAuto();
}
};
return auto.ToElementDescription();
}
}
請問這甚至有可能與自動觀看?或者我們應該尋找一種不同的解決方案?
您定位哪個平臺? Droid的? WP?觸摸? WinRT的? – Stuart