I have an android application which works with httppost
methods. It's a tablet application and i am using Android Version 4.0.4. I want to chance post url informaion from:
Settings > Applications > MyApp's App Info
menu.
How can i create new settings button on that menu? In the other word i want to make Application Settings like in iOS.
Note: I want to use settings like Dolphin Browser
. There is a Manage space option in App Info tap. I want to create or customize like that one.
Android: how to make custom app info menu
1.9k Views Asked by WeyCell At
2
There are 2 best solutions below
0

The Manage space button that you see can't be customized. It's either clear data or Manage space, thats it.
To get the Manage space
button instead of clear data
use the following attribute in the application tag of your Manifest file:
android:manageSpaceActivity="com.example.yourpackage.YourAnyActivity"
See docs of Settings
If you want to provide settings for your app, you should use Android's Preference APIs to build an interface that's consistent with the user experience in other Android apps (including the system settings).
A few of the most common preferences are:
CheckBoxPreference
ListPreference
EditTextPreference