To find a file in the Android Shell “ADB” you can use this command: # busybox find “filetosearch” you can do the same with # ls -R | grep “filetosearch” but you can’t see the directory where is the file
DKLang è un package per Delphi relativo alla gestione dell’internazionalizzazione delle applicazioni. E’ composto da un insieme di componenti, classi e tools veramente ridotto ma efficace, il tool è open source e compatibile con tutte le piattaforme di sviluppo di Delphi (Windows,MacOSX,iOS,Android e Linux) sia per Firemonkey che VCL. Le versioni del tool sono scaricabile…
Leggi tutto
Changing the text property of a tree item in Firemonkey is really simple, you only need to do this: tiC := TTreeViewItem.Create(); tiC.Text := ‘BLA BLA’; tiC.StyledSettings := []; tiC.TextSettings.FontColor := TAlphaColorRec.Blue; tiC.Parent := ParentItem; tiC.TagString := ; tiC.Tag := ;
La famosa piattaforma di sviluppo “Rad Studio” di Embarcadero arriva alla versione 10.2 con la reintroduzione di Linux come piattaforma supportata. Al momento l’unico target di compilazione per linux è x86 64bit, cosa che a me sta molto stretta, visto che trattandosi di un ambiente nativo il target che mi sarebbe piaciuto tanto è ARM…
Leggi tutto
Tested on Delphi 10 Seattle. by importing “ActivityManager” you can check the status of memory from you Android Applications, and check a lot of other things like if a process is running. here is the demo apk memtestandroid.apk and the source code : android_memorymanager_source unit Androidapi.JNI.ActivityManager; interface uses System.SysUtils, FMX.Helpers.Android, Androidapi.JNI.JavaTypes, Androidapi.JNIBridge, Androidapi.Helpers, Androidapi.JNI.GraphicsContentViewText, Androidapi.JNI.Os,…
Leggi tutto