Back to project page Whats-My-Number.
The source code is released under:
GNU General Public License
If you think the Android project Whats-My-Number 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 mynumberwidget.app.wide; /*from www. j a v a 2 s. c om*/ import mynumberwidget.app.AbstractConfigurationDialog; import mynumberwidget.app.R; import mynumberwidget.app.WidgetUpdateHelper; import android.widget.RadioButton; public class ConfigurationDialog extends AbstractConfigurationDialog { protected int applyThemeSetting() { // Get the theme setting RadioButton themeDark = (RadioButton)findViewById(R.id.theme_dark); int theme = WidgetUpdateHelper.THEME_WIDE_LIGHT; if (themeDark.isChecked()) { theme = WidgetUpdateHelper.THEME_WIDE_DARK; } return theme; } }