About 343,000 results
Open links in new tab
  1. adb command to open settings and change them - Stack Overflow

    12 Use this command to see a help on how you can use the settings adb shell command: adb shell settings Use get and put commands (after settings) to change the settings.

  2. Opening Android Settings programmatically - Stack Overflow

    Oct 22, 2013 · Now you can use Intent intent = new Intent (android.provider.Settings.ACTION_SECURITY_SETTINGS); startActivity (intent); There are …

  3. android - Override or disable settings menu - Stack Overflow

    Nov 22, 2011 · The problem is, that the customer can open the settings menu and force kill my application. Is there a way to either disable the settings menu (e.g. by protecting it with a …

  4. Highlighting a menu item in system settings - Stack Overflow

    Jul 19, 2020 · The "Power Shade" menu item is being highlighted once you enter the screen. I am trying to add the same feature to my app, guiding users to an item in the settings menu using …

  5. android - Adb shell commands to change settings or perform …

    How do I use adb to perform some automated tasks on my android phone? I need to find commands that I can issue from the command line (ideally, using a .bat file) that will be …

  6. android - How do I open the Bluetooth Settings Activity ...

    Dec 17, 2012 · I want to open bluetooth settings on button click like this see image HomeActivity.java button.setOnClickListener(new OnClickListener() { public void onClick(View …

  7. How can I create an android menu item using android setting icon

    Jun 13, 2016 · Here is a list of the standard icons. I don't see a "settings" icon. Perhaps you mean "Preferences" (ic_menu_preferences)? You can set the icon programmatically like this:

  8. java - How to set menu to Toolbar in Android - Stack Overflow

    Feb 26, 2016 · This Stack Overflow thread discusses how to set a menu to a Toolbar in Android using Java, providing solutions and code examples.

  9. Invoke android settings from web page URL? - Stack Overflow

    Aug 20, 2015 · From Web application that consists of only web pages. In that, I need to open android settings activity. How to invoke it?

  10. Android: How do I get the Settings menu to appear with …

    Jun 7, 2020 · I have three fragments on the bar that comes in from left (= Drawer Layout?). I have one settings menu (defined as public class SettingsFragment extends …