Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是使用 phonegap 的新手
我想使用 phonegap 创建一个 android 应用程序。我想加载不同的起始页面,即第一次运行程序时我想运行 URL1(允许用户设置应用程序配置),在随后的运行中我想运行 URL2(加载当前设置)
我怎样才能做到这一点??
您可以使用以下代码;
if(first) super.loadUrl("URL1"); else super.loadUrl("URL2");
在你的onCreate()方法上。将“first”参数SharedPreferences作为标志放入以检测首次运行。
onCreate()
SharedPreferences