Guys, I need an android application that can be configured by the user. In java, we are using properties file to configure the applications. Any idea about the same in android..
Thanks in advance
Guys, I need an android application that can be configured by the user. In java, we are using properties file to configure the applications. Any idea about the same in android..
Thanks in advance
I can guess you need preferences. You can use SharedPreferences or PreferenceActivity (this article will be a good start).
If you want your files that can beaccessed from outside you should have some xml file in your resource folder or you can also sed a file along with your application and store iton external memory as andorid do not provide you feature of acessing private datas, toa ccess private datas u need content providers that will be overhead as in your case.. hence better, u bundle a xml file along with you app, which at deployment need to save a copy at sd card and once its there everytime you should check for that file.. this way user will be able to chnge the contents without even running the program, also other application will be able to access youir file
hope this helps