分类:
Delphi XE5 android 捕获几个事件

Delphi XE5 android 捕获几个事件

栏目分类:Delphi 浏览次数:272 发布时间:2015-09-22

以下代码能监控到以下几个事件: FinishedLaunching BecameActive WillBecomeInactive EnteredBackground WillBecomeForeground WillTerminate LowMemory TimeChange OpenURL unitUnit11; interface uses System.SysUtils,System.Types,System...

TAG:
delphi xe 如何使用自带皮肤

delphi xe 如何使用自带皮肤

栏目分类:Delphi 浏览次数:137 发布时间:2015-09-22

delphi XE5自带皮肤的,不需要用第3方了。在Project-Option下,如图所示:...

TAG:
delphi XE5下安卓开发技巧

delphi XE5下安卓开发技巧

栏目分类:Delphi 浏览次数:112 发布时间:2015-09-22

一、手机快捷方式显示中文名称 project-options-VersionInfo-label(改成需要显示的中文名即可),但是需要安装到安卓手机才可以(IOS的没有试过) 二、使用Sqllite存储中文 SqlLite中,字段类型...

TAG:
DELPHI 重命名文件名时 文件存在自动重命名

DELPHI 重命名文件名时 文件存在自动重命名

栏目分类:Delphi 浏览次数:80 发布时间:2015-09-22

procedure TForm1.Button1Click(Sender: TObject); var Dir, FileTitle, FileExt: string; s,s1: string; j:Integer; begin Dir := 'C:\'; FileTitle := '新建 文本文档'; FileExt := '.txt'; s1:=Dir+FileTitle+FileExt; j:=2; if FileExists(s1) then...

TAG:
Delphi XE的firemonkey获取当前文件所在路径的方法

Delphi XE的firemonkey获取当前文件所在路径的方法

栏目分类:Delphi 浏览次数:85 发布时间:2015-09-22

在之前,我们知道有三种方法: ExtractFilePath(ParamStr(0)) ExtractFilePath(Application.ExeName) GetCurrentDir+'\' 在firemonkey中,Windows模式下第一种、第三种还有效: ExtractFilePath(ParamStr(0)) GetCurrentDir+'...

TAG:
Delphi XE5 Android 程序退出功能

Delphi XE5 Android 程序退出功能

栏目分类:Delphi 浏览次数:71 发布时间:2015-09-22

Uses FMX.Platform.Android; ... begin {退出程序} MainActivity.finish; end;...

TAG:
delphi xe5 JSON

delphi xe5 JSON

栏目分类:Delphi 浏览次数:116 发布时间:2015-09-22

unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls,DBXJSON; type TForm1 = class(TForm) Button1: TButton; procedure B...

TAG:
Delphi XE 取得 APP 自己的版本号 (狠跨 4 个平台)

Delphi XE 取得 APP 自己的版本号 (狠跨 4 个平台)

栏目分类:Delphi 浏览次数:165 发布时间:2015-09-22

//------------------------------------------------------------------------------ // by [龟山]阿卍 QQ:1467948783 // http://www.cnblogs.com/onechen/ //------------------------------------------------------------------------------ unit Mai...

TAG:
Delphi XE7 up1 调用android振动功能

Delphi XE7 up1 调用android振动功能

栏目分类:Delphi 浏览次数:134 发布时间:2015-09-22

Delphi xe7 up1 调用android振动功能 振动用到以下4个单元: Androidapi.JNI.App,Androidapi.JNIBridge,Androidapi.JNI.Os,Androidapi.Helpers 使用方法: var LVibrator: JVibrator; begin LVibrator := TJVibrator.Wrap ((SharedActivit...

TAG:
DELPHI中引用sqlite3

DELPHI中引用sqlite3

栏目分类:Delphi 浏览次数:74 发布时间:2015-09-22

DELPHI中引用sqlite3 sqlite引擎在Delphi中的应用从 www.sqlite.org 网站可下载到最新的 sqlite 代码sqlite源文件:sqlite3.c和sqlite3.h。首先编译成OBJ,编译生成sqlite3.obj bcc32 -pc -RT- -O -w- -6 -I(bcc32)\incl...

TAG: