How to add an application settings in android syst

2019-09-07 02:47发布

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.

1条回答
啃猪蹄的小仙女
2楼-- · 2019-09-07 03:27

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.

查看更多
登录 后发表回答