无论如何我可以使用InputBox for android吗?我试过在网上看,但一无所获。我不确定它是否与权限或内容有关。
我尝试过使用这种方法,但仍然没有运气:
New Non Blocking InputBox Function In Delphi XE7 Firemonkey On Android And IOS
我使用的是Android 6.0.1和Android 25.2.5 SDK和API 25。
InputBox显示为灰色
并在使用时:
我是FireMonkey的新手。
答案 0 :(得分:0)
您可以像这样使用输入框。请记住,输入框不是模态的。用户答案在作为第4个参数提供的匿名方法中处理。
InputBox('Box Caption','Box prompt','Default value',
procedure(const AResult: TModalResult; const AValue: string)
begin
// This is executed when user closes the input box
// Check result and value here and do whatever is needed
end
);