android下xml放哪儿?
1、用Project->Deployment,打开发布文件窗口,增加要发布的文件。然后设置文件发布的位置Remote Path,填写为assets\internal\
2、代码
var
p: string;
begin
showmessage(System.IOUtils.TPath.GetDocumentsPath);
p := System.IOUtils.TPath.GetDocumentsPath+PathDelim+'myconfig.xml';
clientdataset.fileName := p;
clientdataset.open;
end;