Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add an application settings in android system settings?

In my application i have a requirement that i want to provide one edit text in the system settings menu to enter URL and my application hit the server based on the user given URL in system setting. Is it possible ? If it is possible please can any one help me to do this.

It is possible in IPhone as they are having a setting.Bundle. Do we have any framework in android similar to IOS?

Thanks in Advance.

like image 970
Suman Ch Avatar asked Oct 22 '25 03:10

Suman Ch


1 Answers

You can add the intent-filter blew at your activity in manifest.xml, add it will make a link at system setting -> appinfo -> your app detail | addtional settings. and click it will jump to yout activity.

this is very deep path, but it work.

<intent-filter>
    <action android:name="android.intent.action.APPLICATION_PREFERENCES" />
    <category android:name="android.intent.category.DEFAULT" />
</intent-filter>

Another way: check and read a file like "debug.properties" from sdcard, then read the url properties.

like image 90
zayn Avatar answered Oct 24 '25 17:10

zayn



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!