我在tableView中有一个简单的条目。
第一次按下该条目时,会出现键盘但焦点消失。 点击键盘什么都不做。 只有当再次按下条目时,键盘才会在条目
中写入字母对我来说,EntryCell不够好,当我用EntryCell替换Entry时它也没有用?
TableView tableView = new TableView();
tableView.Intent = TableIntent.Form;
tableView.BackgroundColor = Color.Blue;
tableView.HasUnevenRows = true;
tableView.Root = new TableRoot()
{
new TableSection()
{
new ViewCell() { View = new Entry() { WidthRequest = 100, BackgroundColor = Color.Red} }
}
};