I'm using Delphi XE8 for Android mobile application development. I have used TDateEdit
for date pick. In some Android device (like Samsung Galaxy J7 Prime , Xiaomi mi) , when i click on TDateEdit
, the application getting closed without any exceptions.
I'm having only TDateEdit on my form , I have not added any code , only system generated code is there.
Source code is given below ,
unit Unit2;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs,
FMX.DateTimeCtrls;
type
TForm2 = class(TForm)
DateEdit1: TDateEdit;
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form2: TForm2;
implementation
{$R *.fmx}
end.
Form design is given below ,
Samsung Galaxy J7 Prime device configuration is given below,
OS - Android
6.0.1 CPU - Octa-core 1.6 GHz Cortex-A53
If anyone faced this kind of issue , please help me on this.