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.
GalaxyNote用のカスタムAndroidアプリケーションを作成しました。
画面のほぼフルサイズを占める大きなウィジェットを介してアプリケーションを起動する方法はありますか?
どんな助けでも大歓迎です。ありがとう
これを試して -
PackageManager pm = getPackageManager(); try { String packageName = "com.example.package"; Intent launchIntent = pm.getLaunchIntentForPackage(packageName); startActivity(launchIntent); } catch (Exception e1) { }