androidr15.inc
add property component
AVView, AWTextView and AWEditText
add component TButton = class(AWButton)
inicijalize component TButton
uses StdCtrl;
https://github.com/zeljkoc/pandroid/tree/master/units/pascalStdCtrls.pas...
procedure btonClick(aView: AVView);
function btonLongClick(para1: AVView): jboolean;
end;
var bt: TButton;
begin
bt := TButton.Create(Self);
bt.id ;= 1;
bt.text := JLString('Ok');
bt.onClickListener := @btonClick;
bt.onClickLongListener := @btonLongClick;
...