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.
当用户按下按钮时,我试图重定向到设置壁纸,但我阅读了文档并没有找到类似的东西。有人可以帮助我吗?
我尝试
Intent i = new Intent(this, android.provider.Settings.ACTION_SETTINGS.getClass() ); startActivity( i );
参考:重定向到设备设置
但是,没有工作
尝试这个:
Intent wallpaperChooser = new Intent(Intent.ACTION_SET_WALLPAPER); startActivity(wallpaperChooser);
尝试这个
Intent i = new Intent(android.provider.Settings.ACTION_SETTINGS); startActivity( i );