delphi android, how to use JAttributeSet in init procedure?

  

I need to create a JEditText, so i found theses methods :

JEditTextClass = interface(JTextViewClass)
[‘{A1E1255C-8FC9-449A-A886-57ABA315C3E3}’]
{class} function init(context: JContext): JEditText; cdecl; overload;
{class} function init(context: JContext; attrs: JAttributeSet): JEditText; cdecl; overload;
{class} function init(context: JContext; attrs: JAttributeSet; defStyleAttr: Integer): JEditText; cdecl; overload;
{class} function init(context: JContext; attrs: JAttributeSet; defStyleAttr: Integer; defStyleRes: Integer): JEditText; cdecl; overload;

end;

but i can’t understand how to set (and with what?)

attrs: JAttributeSet;
defStyleAttr: Integer;
defStyleRes: Integer

Comments are closed.