我在“报告”构建器中有一列,按questionField.setOnEditorActionListener(
new TextView.OnEditorActionListener() {
public boolean onEditorAction(TextView exampleView,
int actionId, KeyEvent event)
{
if ((actionId == EditorInfo.IME_ACTION_DONE
|| actionId == EditorInfo.IME_ACTION_NEXT
|| actionId == EditorInfo.IME_ACTION_GO
|| (event != null
&& event.getKeyCode() == KeyEvent.KEYCODE_ENTER)))
{
return nextView.requestFocus() // the next view you want the focus to be on
}
else
{
return false;
}
}
});
分组,然后按line
排序。问题是该列是根据字段末尾的数字进行分组和排序,例如, " 1"在line
。如何制作它以便它也能看到它前面的文字?我是否需要将此文本字段转换为另一种数据类型?
或者以更简单的方式 - 我正在排序到" Row Groups"在“分组”窗格中,右键单击LN BM1
并转到排序选项卡。 I see here我可以使用表达式。如何编写表达式以将此文本转换为其他正确排序的数据类型?
line