我有一个表格视图,其中一行包含一个按钮。当用户按下按钮时,我将一行添加到包含文本区域的表中。我希望新行位于 tableview 的顶部并且键盘打开。这是我尝试过的:
function addNewComment() {
var newComment = new NewComment(tableView.data[0].rows.length);
//I add the spacer so that if the added row is the last in the table, it can still be at the top of the view
var spacer = Ti.UI.createTableViewRow({
height:250,
backgroundColor: 'white'
});
//There are 6 rows of information in the table before the comments start
tableView.appendRow(spacer, {animated:false});
tableView.insertRowAfter(5, newComment, {animationStyle:Titanium.UI.iPhone.RowAnimationStyle.DOWN});
//The listener for this just focuses the text area
Ti.App.fireEvent('newCommentAddedToView');
tableView.scrollToIndex(6,{animated:true,position:Ti.UI.iPhone.TableViewScrollPosition.TOP});
}
当它运行时,就好像方法的最后一行没有被调用。新行会滚动到视图中,但不会一直滚动到顶部。它只会滚动到足以看到您在文本区域中输入的内容的视图中。然后您可以手动滚动该行,使其与顶部对齐,但我想自动执行此操作。有没有办法做到这一点?
提前致谢。