Back to project page android-properties.
The source code is released under:
Apache License
If you think the Android project android-properties listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.github.fernandodev.androidproperties.sample; //w ww . j a v a2s . c o m import android.content.Context; import com.github.fernandodev.androidproperties.lib.AssetsProperties; import com.github.fernandodev.androidproperties.lib.Property; /** * Created by fernando on 9/11/14. */ public class Config extends AssetsProperties { @Property int max; @Property("rate_value") float rateValue; @Property double temperature; @Property String message; @Property boolean condition; public Config(Context context) { super(context); } }