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.
所以,小部件已经添加到屏幕上,我想知道是否有办法从活动中去/启动小部件?谢谢。
简单,通过调用破坏您的活动:
finish();
=========
所以基本上你需要一个像主页按钮一样的功能。您的应用程序将置于后台并显示主屏幕。
moveTastToBack(true);
或者
Intent i = new Intent(); i.setAction(Intent.ACTION_MAIN); i.addCategory(Intent.CATEGORY_HOME); this.startActivity(i);