Android M - custom permission dialog style

落爺英雄遲暮 提交于 2020-01-11 10:21:37

问题


While implementing the new Android M permission model I noticed that the permissions dialog does not respect the theming of my styles.xml.

In my styles.xml I override the dialog and alertdialog style like this:

<item name="android:dialogTheme">@style/Theme.dialog</item>
<item name="android:alertDialogTheme">@style/Theme.dialog</item>

Is it possible to change the theming?

Or is it because this is a system dialog like in the device settings?


回答1:


No, it's not possible. The permissions dialog is system dialog, hence you can't change its theme:

The M Developer Preview introduces a new app permissions model which streamlines the process for users to install and upgrade apps. If an app running on the M Preview supports the new permissions model, the user does not have to grant any permissions when they install or upgrade the app. Instead, the app requests permissions as it needs them, and the system shows a dialog to the user asking for the permission.



来源:https://stackoverflow.com/questions/32097218/android-m-custom-permission-dialog-style

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!