android 引导页 判断是否第一次安装

第一步 是我们一个简单SP存储的工具类

public class SharePreUtilxx {
    private static SharedPreferences sp;

    /** 保存数据 **/
    public static void saveBoolean(Context ctx, String key, boolean value) {
        if (sp == null) {
            sp = ctx.getSharedPreferences("config", Context.MODE_PRIVATE);
        }
        sp.edit().putBoolean(key, value).commit();
    }

    /** 取出数据 **/
    public static Boolean getBoolean(Context ctx, String key, boolean defValue) {
        if (sp == null) {
            sp = ctx.getSharedPreferences("config", Context.MODE_PRIVATE);
        }
        return sp.getBoolean(key, defValue);
    }
}

第二部是定义一个状态值来判断是否是一一次进来

public interface ConstantValue {
    public static String ISFIRST = "isFirst";//全局静态变量
    public static String ISLoca = "isnoFirst";//全局静态变量
}

 

new Handler().postDelayed(new Runnable() {
    @Override
    public void run() {
        Boolean isFirst = SharePreUtilxx.getBoolean(mContext, ConstantValue.ISLoca, true);
        if(isFirst){

            Intent intent = new Intent(mContext,
                    SwitchLocationActivity.class);
            Bundle bundle = new Bundle();
            bundle.putInt("theParentColumnId",columnid);
            intent.putExtras(bundle);
            mContext.startActivity(intent);
            //将isFirst改为false,并且在本地持久化
            SharePreUtilxx.saveBoolean(mContext, ConstantValue.ISLoca, false);
        }else{


            这里就是第二次安装进来的操作
    }
}, 1000);

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值