摘要:
这个实例在windows、OS X、IOS和Android等平台运行正常。本文参考这个网站提供的方法:http://zarko-gajic.iz.hr/firemonkey-mobile-android-ios-qr-code-generation-using-delphi-xe-5-delphiz... 阅读全文
摘要:
Delphixe7up1调用android振动功能振动用到以下4个单元:Androidapi.JNI.App,Androidapi.JNIBridge,Androidapi.JNI.Os,Androidapi.Helpers使用方法:varLVibrator:JVibrator;beginLVibr... 阅读全文
摘要:
Delphi xe7 android实现透明度可以调整的对话框 要实现对话框透明度可以调整的效果,主要靠Layout和rectangle控件,改变rectangle1的fill颜色就可以调整透明度的颜色。 具体步骤如下: 1.将要显示的提示框窗口form的属性Transparency设为true 2 阅读全文
摘要:
delphi XE6 在Android编译SharedActivity时正常,但xe7下编译出错,在uses添加Androidapi.Helpers就可以。 阅读全文
摘要:
Delphi XE7 GPS控件的Android新变化GPS控件的Accuracy可以起作用了,Accuracy>0时: 1--100:ACCURACY_HIGH 101--500:ACCURACY_MEDIUM 其它值时:ACCURACY_LOWAccuracy=0时根据以下方式进行定位:1.GP... 阅读全文
摘要:
使用DPFJAlertDialog控件时发现DPFJAlertDialog1Click不能捕获到对话框到底按了那个按键,上网搜索后找到了解决方法:打开DPF.Android.JAlertDialog.pas文件,找到procedure TAlertDialogOnClickListener.onCl... 阅读全文
摘要:
delphi xe6 for android LocationSensor控件默认是优先使用网络定位,对定位精度要求高的应用我们可以修改原码直接指定GPS定位。修改方法:将C:\Program Files\Embarcadero\Studio\14.0\source\rtl\common\Syste... 阅读全文
摘要:
delphi fmx的字体等设置默认与皮肤有关,用代码直接修改字体颜色等是无效的,如何才能用代码修改呢?请按以下方法就可以:1.在Object inspector中取消StlyedSettings中的Fontcolor选项的勾。2. Label6.TextSettings.FontColor:=TA... 阅读全文
摘要:
The first step it's a run sample from RAD Studio that named SensorInfo on your device. On the tab Biometric you can see HumanProximity. If it's true y... 阅读全文
摘要:
今天才知道xe6 android控件的透明度设置方法:只需设置控件中的Opacity参数,默认为1--不透明panel1.Opacity:=0.60; 阅读全文