Java tutorial
//package com.java2s; import android.content.SharedPreferences; import android.text.TextUtils; public class Main { public static boolean isLawyer(SharedPreferences user_sp) { if (TextUtils.isEmpty(user_sp.getString("lawyerid", ""))) { return false; } return true; } }