April 2015
Beginner to intermediate
494 pages
10h 26m
English
StoreType.java, add the newly managed integer type to the enumeration:public enum StoreType {
Integer,
String
}Store.java and define the new integer functionalities our native store provides:public class Store {
...
public native int getCount();
public native int getInteger(String pKey);
public native void setInteger(String pKey, int pInt);
public native String getString(String pKey);
public native void setString(String pKey, String pString);
}StoreActivity class, update the onGetValue() method to retrieve integer entries from the store when they are selected in the GUI:public class StoreActivity extends Activity { ... public static class PlaceholderFragment extends Fragment ...