Delphi/꿀팁
Android에서 어플 백그라운드로 보내기
Android API를 사용할 수 있게 해주는 유닛을 추가합니다.uses Androidapi.JNI.Helpers, Androidapi.JNI.GraphicsContentViewText; 백그라운드로 보내기procedure MoveTaskToBack;var Intent : JIntent;begin Intent := JIntent.Create; Intent .SetAction(TJIntent.JavaClass.ACTION_MAIN); Intent .AddCategory(TJIntent.JavaClass.CATEGORY_HOME); TAndroidHelper.Activity.StartActivity(Intent);end;