nazanin_asadi_1
دوشنبه 13 مهر 1394, 14:03 عصر
نیاز به یک برنامه اندروید به صورت ساده و مقدماتی دارم
چون هیچ آشنایی با برنامه نویسی اندروید ندارم (پیش نیازهاشو هم ندارم)
برنامه یه صفحه ساده باشه که یه browser داشته باشه که به محض باز کردن برنامه مستقیم اون سایت رو نشون بده
به زبان دلفی اگه بخوام بنویسم میشه سورس زیر :
unit Unit1;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.OleCtrls, SHDocVw;
type
TForm1 = class(TForm)
WebBrowser1: TWebBrowser;
procedure FormShow(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.FormShow(Sender: TObject);
begin
WebBrowser1.Navigate('www.blogfa.com');
end;
end.
میخواستم همینو برای اندروید به صورت نمونه داشته باشم ممنون میشم کمک کنید
چون هیچ آشنایی با برنامه نویسی اندروید ندارم (پیش نیازهاشو هم ندارم)
برنامه یه صفحه ساده باشه که یه browser داشته باشه که به محض باز کردن برنامه مستقیم اون سایت رو نشون بده
به زبان دلفی اگه بخوام بنویسم میشه سورس زیر :
unit Unit1;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.OleCtrls, SHDocVw;
type
TForm1 = class(TForm)
WebBrowser1: TWebBrowser;
procedure FormShow(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.FormShow(Sender: TObject);
begin
WebBrowser1.Navigate('www.blogfa.com');
end;
end.
میخواستم همینو برای اندروید به صورت نمونه داشته باشم ممنون میشم کمک کنید