当前位置: 首页>>代码示例>>Java>>正文


Java Parse类代码示例

本文整理汇总了Java中com.parse.Parse的典型用法代码示例。如果您正苦于以下问题:Java Parse类的具体用法?Java Parse怎么用?Java Parse使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


Parse类属于com.parse包,在下文中一共展示了Parse类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: onCreate

import com.parse.Parse; //导入依赖的package包/类
@Override
public void onCreate() {
    super.onCreate();

    // Enable Local Datastore.
    Parse.enableLocalDatastore(this);

    // Add your initialization code here
    Parse.initialize(this);
    ParseInstallation.getCurrentInstallation().saveInBackground();

    ParseACL defaultACL = new ParseACL();
    // Optionally enable public read access.
    defaultACL.setPublicReadAccess(true);
    ParseACL.setDefaultACL(defaultACL, true);
}
 
开发者ID:AvijitGhosh82,项目名称:Madad_SOS,代码行数:17,代码来源:StartApp.java

示例2: onCreate

import com.parse.Parse; //导入依赖的package包/类
@Override
public void onCreate() {
    Log.d("DEBUG", "Creating TypeMaps");
    typeMaps = new TypeMaps();
    super.onCreate();
    CalligraphyConfig.initDefault
        ("Gotham-Light.ttf", R.attr.fontPath);
    LineNumberReader lnr = new LineNumberReader
        (new InputStreamReader
         (getResources().openRawResource(R.raw.keys)));

    registerClasses();

    String parseClientKey;

    try {
        parseAppId = lnr.readLine();
        parseClientKey = lnr.readLine();

        Parse.initialize(this, parseAppId, parseClientKey);
        Log.d("DEBUG", "Successfully initialized");
    }
    catch (IOException ioe) {
        Log.e("DEBUG", "Failed to read keys", ioe);
    }
}
 
开发者ID:samv,项目名称:AshaNetApp,代码行数:27,代码来源:AshaNetApp.java

示例3: getMergedOptions

import com.parse.Parse; //导入依赖的package包/类
private Bundle getMergedOptions() {
  // Read activity metadata from AndroidManifest.xml
  ActivityInfo activityInfo = null;
  try {
    activityInfo = getPackageManager().getActivityInfo(
        this.getComponentName(), PackageManager.GET_META_DATA);
  } catch (NameNotFoundException e) {
    if (Parse.getLogLevel() <= Parse.LOG_LEVEL_ERROR &&
        Log.isLoggable(LOG_TAG, Log.WARN)) {
      Log.w(LOG_TAG, e.getMessage());
    }
  }

  // The options specified in the Intent (from ParseLoginBuilder) will
  // override any duplicate options specified in the activity metadata
  Bundle mergedOptions = new Bundle();
  if (activityInfo != null && activityInfo.metaData != null) {
    mergedOptions.putAll(activityInfo.metaData);
  }
  if (getIntent().getExtras() != null) {
    mergedOptions.putAll(getIntent().getExtras());
  }

  return mergedOptions;
}
 
开发者ID:rutvijkumarshah,项目名称:WatsiAndroidApp,代码行数:26,代码来源:ParseLoginActivity.java

示例4: onCreate

import com.parse.Parse; //导入依赖的package包/类
@Override
public void onCreate() {
	super.onCreate();

	ParseObject.registerSubclass(PrsPhoto.class);

	/*
	 * Fill in this section with your Parse credentials
	 */
	Parse.initialize(this, "VgUmqfwmveatEK77VKqejESUi9g2YTiLd5ARi5Zv", "rZOccIO0y35BMrfv599RyclrNo5QT308WRCLkTnY");

	// annonymous user
	ParseUser.enableAutomaticUser();

	/*
	 * For more information on app security and Parse ACL:
	 * https://www.parse.com/docs/android_guide#security-recommendations
	 */
	ParseACL defaultACL = new ParseACL();

	defaultACL.setPublicReadAccess(true);

	ParseACL.setDefaultACL(defaultACL, true);
}
 
开发者ID:triestpa,项目名称:PhotoShare,代码行数:25,代码来源:PrsApplication.java

示例5: onCreate

import com.parse.Parse; //导入依赖的package包/类
@Override
public void onCreate() {
    super.onCreate();
    ParseObject.registerSubclass(Kid.class);
    ParseObject.registerSubclass(Visit.class);
    ParseObject.registerSubclass(Attendance.class);
    Parse.initialize(new  Parse.Configuration.Builder(this)
            .applicationId("PARSE applicationId to be added here")
            .clientKey("Parse Client Id to be added here")
            .server("Parse server address to be added here").enableLocalDataStore().build());

    ParseUser.enableAutomaticUser();
    ParseACL defaultACL = new ParseACL();
    defaultACL.setPublicReadAccess(true);
    defaultACL.setPublicWriteAccess(true);
    ParseACL.setDefaultACL(defaultACL, true);
}
 
开发者ID:amir511,项目名称:My-Sheep,代码行数:18,代码来源:ParseApplication.java

示例6: setupParse

import com.parse.Parse; //导入依赖的package包/类
private void setupParse() {
    Parse.initialize(this);

    Parse.setLogLevel(
            BuildConfig.DEBUG ?
                    Parse.LOG_LEVEL_VERBOSE :
                    Parse.LOG_LEVEL_NONE);

    ParseInstallation parseInstallation = ParseInstallation.getCurrentInstallation();
    parseInstallation.increment("uses");
    parseInstallation.saveInBackground();

    ParsePush.subscribeInBackground("");
    ParsePush.subscribeInBackground("general");
    ParsePush.subscribeInBackground("warning");
    ParsePush.subscribeInBackground("news");

    ParseLocation.registerSubclass(ParseLocation.class);
    Schedule.registerSubclass(Schedule.class);
    Price.registerSubclass(Price.class);
    New.registerSubclass(New.class);
}
 
开发者ID:Gnzlt,项目名称:UCOmove,代码行数:23,代码来源:UCOmoveApplication.java

示例7: setUpParse

import com.parse.Parse; //导入依赖的package包/类
public static void setUpParse(Context context) {

        Parse.enableLocalDatastore(context);
        Parse.initialize(context, "SUA_APPLICATION_ID", "SUA CLIENT_KEY");
        ParseInstallation.getCurrentInstallation().saveInBackground();

        ParseUser.enableAutomaticUser();
        ParseACL defaultACL = new ParseACL();
        defaultACL.setPublicReadAccess(true);
        defaultACL.setPublicWriteAccess(true);

        ParsePush.subscribeInBackground(Constants.CHANNEL, new SaveCallback() {
            @Override
            public void done(ParseException error) {
                if (error == null) {
                    Log.i(Constants.TAG, "Successfully subscribed to Parse!");
                }else{
                    Log.i(Constants.TAG, "Error subscribed to Parse!");
                }
            }
        });
    }
 
开发者ID:rudsonlive,项目名称:ParseLiveo,代码行数:23,代码来源:ParsePushApp.java

示例8: onCreate

import com.parse.Parse; //导入依赖的package包/类
@Override
public void onCreate() {
    super.onCreate();

    //If using Parse.com
    Parse.enableLocalDatastore(this);
    //TODO Customize parse_app_id & parse_client_key values in strings
    Parse.initialize(this);

    //If Using Firebase.
    Firebase.setAndroidContext(this);
    //General Firebase reference used allong all your app
    mFireBaseRef = new Firebase("https://<YOUR-FIREBASE-APP>.firebaseio.com/");
    //Use that same reference to perform login and register with Reglog.
    RegLog.setFirebaseReference(mFireBaseRef);
}
 
开发者ID:Antpachon,项目名称:RegLog,代码行数:17,代码来源:SampleApplication.java

示例9: onCreate

import com.parse.Parse; //导入依赖的package包/类
@Override
public void onCreate() {
  super.onCreate();

  // Enable Local Datastore.
  Parse.enableLocalDatastore(this);

  // Add your initialization code here
  Parse.initialize(this);

  ParseUser.enableAutomaticUser();
  ParseACL defaultACL = new ParseACL();
  // Optionally enable public read access.
  // defaultACL.setPublicReadAccess(true);
  ParseACL.setDefaultACL(defaultACL, true);
}
 
开发者ID:BehrouzRiahu,项目名称:Marketplace,代码行数:17,代码来源:StarterApplication.java

示例10: onCreate

import com.parse.Parse; //导入依赖的package包/类
@Override
public void onCreate() {
    super.onCreate();

    ParseObject.registerSubclass(Organization.class);
    ParseObject.registerSubclass(UserBeacon.class);
    ParseObject.registerSubclass(CustomUser.class);
    ParseObject.registerSubclass(Note.class);

    Parse.initialize(new Parse.Configuration.Builder(getApplicationContext())
            .applicationId(Parse_appID)
            .clientKey(null)
            .addNetworkInterceptor(new ParseLogInterceptor())
            .enableLocalDataStore() //enable local datastore within initialization since hosted elsewhere
            .server("http://estinote.herokuapp.com/parse/") // The trailing slash is important.
    .build()
    );

    //scan();
}
 
开发者ID:donniepropst,项目名称:note.cntxt,代码行数:21,代码来源:MyApplication.java

示例11: init

import com.parse.Parse; //导入依赖的package包/类
public void init() {

        MainApplication.ServerHost = getSharedPreferences("ip",MODE_PRIVATE).getString("ip",null);

        if(MainApplication.ServerHost==null)
            MainApplication.ServerHost = Constants.ServerHost;
        Fresco.initialize(getApplicationContext());

        ParseObject.registerSubclass(UserInfo.class);
        Parse.initialize(new Parse.Configuration.Builder(this)
                .applicationId("langrensha")
                .clientKey("")
                .server(Constants.makeNewIpAddress(MainApplication.ServerHost) + "/parse")
                .enableLocalDataStore()
                .build()
        );


        initSocket();

        SoundEffectManager.init(this);
    }
 
开发者ID:whu-iss-jack,项目名称:langren,代码行数:23,代码来源:MainApplication.java

示例12: onCreate

import com.parse.Parse; //导入依赖的package包/类
@Override
public void onCreate() {
  super.onCreate();

  // Enable Local Datastore.
  Parse.enableLocalDatastore(this);

  // Add your initialization code here
  Parse.initialize(this, "COLFRcv3xi8naPtnDUHK4QwXpY8E49t9OuBYzKmN", "NJsKhQZ9pSJXPQ1EnMdzptxWxvLyzAp4AihbEdVp");
  ParseInstallation.getCurrentInstallation().saveInBackground();

  ParseUser.enableAutomaticUser();
  ParseACL defaultACL = new ParseACL();
  // Optionally enable public read access.
  // defaultACL.setPublicReadAccess(true);
  ParseACL.setDefaultACL(defaultACL, true);

}
 
开发者ID:Nyceane,项目名称:HackathonPADLS,代码行数:19,代码来源:StarterApplication.java

示例13: onCreate

import com.parse.Parse; //导入依赖的package包/类
@Override
public void onCreate() {
    super.onCreate();

    Parse.enableLocalDatastore(this);
    Parse.initialize(this, "b6M7rAxtdYoUgGMgGkzmYmpDWiN2T6M8c2RTJ5Zg", "Xsqyd44kUtgiOMMvwP8gyVjmdZLvXLxuynmGqqNX");
    ParsePush.subscribeInBackground("Apro_2016", new SaveCallback() {
        @Override
        public void done(ParseException e) {
            Log.e(TAG, "Successfully subscribed to Parse!");
        }


    });
    Log.d(TAG, "not rgtd.");
}
 
开发者ID:Aparoksha,项目名称:App_2016,代码行数:17,代码来源:parse_config.java

示例14: onCreate

import com.parse.Parse; //导入依赖的package包/类
@Override
  public void onCreate() {
      super.onCreate();

      instance = this;

      // Perform injection
      Injector.init(getRootModule(), this);
      // Enable Local Datastore.
     // Parse.enableLocalDatastore(this);
ParseObject.registerSubclass(Device.class);
      // Add your initialization code here
Parse.initialize(this, "qKYdojVtMPjHxhNMJZ8sIlPVdKJQZYlFcaPfhKts", "lgrLheiLQXSX5v58d3XMxgBsethavM2aQMnE27m8");
ParseUser.enableRevocableSessionInBackground();
ParseUser.enableAutomaticUser();
      ParseACL defaultACL = new ParseACL();
      // Optionally enable public read access.
       defaultACL.setPublicReadAccess(true);
defaultACL.setPublicWriteAccess(true);
      ParseACL.setDefaultACL(defaultACL, true);


  }
 
开发者ID:pagesjaunes,项目名称:androidMobileDeviceManager,代码行数:24,代码来源:BootstrapApplication.java

示例15: getMergedOptions

import com.parse.Parse; //导入依赖的package包/类
private Bundle getMergedOptions() {
    // Read activity metadata from AndroidManifest.xml
    ActivityInfo activityInfo = null;
    try {
        activityInfo = getPackageManager().getActivityInfo(
                this.getComponentName(), PackageManager.GET_META_DATA);
    } catch (NameNotFoundException e) {
        if (Parse.getLogLevel() <= Parse.LOG_LEVEL_ERROR &&
                Log.isLoggable("ParseLoginActivity", Log.WARN)) {
            Log.w("ParseLoginActivity", e.getMessage());
        }
    }

    // The options specified in the Intent (from ParseLoginBuilder) will
    // override any duplicate options specified in the activity metadata
    Bundle mergedOptions = new Bundle();
    if (activityInfo != null && activityInfo.metaData != null) {
        mergedOptions.putAll(activityInfo.metaData);
    }
    if (getIntent().getExtras() != null) {
        mergedOptions.putAll(getIntent().getExtras());
    }

    return mergedOptions;
}
 
开发者ID:LibertACAO,项目名称:libertacao-android,代码行数:26,代码来源:ParseLoginActivity.java


注:本文中的com.parse.Parse类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。