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.provider.Settings.System;

public class Main {
    public static final String HALF_DOWNLOAD_VALUE = "hanlf_download_value";

    public static void setBaiDuHalfDownloadValue(Context context, int value) {
        synchronized (HALF_DOWNLOAD_VALUE) {
            System.putInt(context.getContentResolver(), HALF_DOWNLOAD_VALUE, value);
        }
    }
}