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.
我为 Galaxy Note 构建了一个自定义的 android 应用程序。
有没有办法通过一个占据整个屏幕大小的大部件来启动应用程序?
任何帮助表示赞赏。谢谢
尝试这个 -
PackageManager pm = getPackageManager(); try { String packageName = "com.example.package"; Intent launchIntent = pm.getLaunchIntentForPackage(packageName); startActivity(launchIntent); } catch (Exception e1) { }