Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.content.Context;
import android.content.SharedPreferences;

public class Main {
    private static final String ZfbType = "ZfbType";
    private static final String ZfbType_K = "ZfbType_k";

    public static String getZfbType(Context context) {
        SharedPreferences sharedPreferences = context.getSharedPreferences(ZfbType, Context.MODE_PRIVATE);
        return sharedPreferences.getString(ZfbType_K, "");
    }
}