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 int HALF_VALUE = 100;
    public static final String HALF_DOWNLOAD_VALUE = "hanlf_download_value";

    public static int getBaiduHalfDownloadValue(Context context) {
        synchronized (HALF_DOWNLOAD_VALUE) {
            return System.getInt(context.getContentResolver(), HALF_DOWNLOAD_VALUE, HALF_VALUE);
        }
    }
}