mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 08:37:19 +08:00
28 lines
963 B
C#
28 lines
963 B
C#
![]() |
using Android.App;
|
|||
|
using Android.OS;
|
|||
|
//using Android.Runtime;
|
|||
|
//using AndroidX.AppCompat.App;
|
|||
|
using CPF.Platform;
|
|||
|
|
|||
|
namespace AndroidTest
|
|||
|
{
|
|||
|
[Activity(Label = "@string/app_name", MainLauncher = true)]
|
|||
|
public class MainActivity : CPF.Android.CpfActivity
|
|||
|
{
|
|||
|
static MainActivity()
|
|||
|
{
|
|||
|
CPF.Platform.Application.Initialize((OperatingSystemType.Android, new CPF.Android.AndroidPlatform(), new CPF.Skia.SkiaDrawingFactory { ClearType = true, UseGPU = true }));
|
|||
|
}
|
|||
|
|
|||
|
protected override void OnCreate(Bundle savedInstanceState)
|
|||
|
{
|
|||
|
//Window.SetSoftInputMode(SoftInput.AdjustResize);
|
|||
|
base.OnCreate(savedInstanceState);
|
|||
|
ClassLibrary1.Class1.CreateNativeControl = () => new global::Android.Widget.Button(this) { Text = "原生控件" };
|
|||
|
SetContentView(new CPF.Android.CpfView(new ClassLibrary1.Class1()));
|
|||
|
//this.Window.AddContentView();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|