First of all we need to create a custom module, for example my_module, then in the implementation of the hook_init() :
function my_module_init(){
global custom_theme;
if (arg(0) == 'user' && arg(2) == 'edit') {
$custom_theme = 'adaptivetheme_admin';
init_theme();
}
}
Enjoy !