public AstoriaWindow(Context c, EmuPage e) : base(c)
        {
            emuPage = e;

            SetDefaultColors();

            //setStatusBarColor((int)(c.getR().color.get("colorPrimaryDark") ?? -1));
            //setNavigationBarColor((int)(c.getR().color.get("navigationBarColor") ?? -1));
        }
Exemple #2
0
        public DalvikCPU(Dex d, string pName, EmuPage hostPg)
        {
            dex         = d;
            packageName = pName;
            hostPage    = hostPg;
            da          = hostPage.RunningApp;
            da.cpu      = this;

            hostPage.setPreloadStatusText("Setting up app environment...");
        }
Exemple #3
0
        public static async Task <DroidApp> CreateAsync(StorageFolder sf, EmuPage ep)
        {
            DroidApp result = new DroidApp();

            result.localAppRoot = sf;
            await result.GetAPKInfoFromLocalAppFolder();

            result.emPage = ep;

            return(result);
        }