Is it possible to open the above page programmatically in Android?
相关问题
- How can I create this custom Bottom Navigation on
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- Listening to outgoing sms not working android
- How to create Circular view on android wear?
相关文章
- android开发 怎么把图片放入drawable的文件夹下
- android上如何获取/storage/emulated/下的文件列表
- androidStudio有个箭头不认识
- SQLite不能创建表
- Windows - Android SDK manager not listing any plat
- Animate Recycler View grid when number of columns
- Why is the app closing suddenly without showing an
- Android OverlayItem.setMarker(): Change the marker
As far as i know there is no implicit
Intent
to open thisActivity
.To figure out how to do this explicitly, take a look at the Logcat output when opening this menu on your device to see what is going on. The flow should be handled by the
ActivityManager
at some point, so you can filter for it.You should look for something like this in the log:
After acquiring this information, you just have to create an appropriate
Intent
so you could start the sameActivity
yourself:On a side note, you shouldn't open OS components in an explicit way like this. Whenever they change the class name or package of this component, your code will break.
MIUI 10.
For current app:
You can use jump to app detail activity on XiaoMi Phone(MIUI)
This is used by Dev Tools App, https://play.google.com/store/apps/details?id=cn.trinea.android.developertools