Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
Options.java
Package: Android-code.zip [view]
Upload User: xmjingguan
Upload Date: 2009-07-06
Package Size: 2054k
Code Size: 2k
Category:
android
Development Platform:
Java
- /*** * Excerpted from "Hello, Android!", * published by The Pragmatic Bookshelf. * Copyrights apply to this code. It may not be used to create training material, * courses, books, articles, and the like. Contact us if you are in doubt. * We make no guarantees that this code is fit for any purpose. * Visit http://www.pragmaticprogrammer.com/titles/eband for more book information. ***/ package org.example.sudoku;
- import android.content.Context;
- import android.content.SharedPreferences;
- public class Options {
- private static final String SUDOKU_OPTIONS = Sudoku.class.getName(); private static final String OPT_MUSIC = "music"; private static final boolean OPT_MUSIC_DEF = true;
- private static final String OPT_HINTS = "hints";
- private static final boolean OPT_HINTS_DEF = true;
- private static SharedPreferences getSudokuPreferences( Context context) {
- return context.getSharedPreferences(SUDOKU_OPTIONS,
- Context.MODE_PRIVATE);
- }
- public static boolean getMusic(Context context) { return getSudokuPreferences(context).getBoolean(
- OPT_MUSIC, OPT_MUSIC_DEF);
- }
- public static boolean getHints(Context context) {
- return getSudokuPreferences(context).getBoolean(
- OPT_HINTS, OPT_HINTS_DEF);
- }
- public static boolean putMusic(Context context, boolean value) { return getSudokuPreferences(context)
- .edit()
- .putBoolean(OPT_MUSIC, value)
- .commit();
- }
- public static boolean putHints(Context context, boolean value) {
- return getSudokuPreferences(context)
- .edit()
- .putBoolean(OPT_HINTS, value)
- .commit();
- }
- }