简体   繁体   English

如何使用parse.com发送和检索数据

[英]How can I send and retrieve data with parse.com

I wrote that code to send data to parse.com then to receive it also but I can't even send it till now, why ?!! 我编写了该代码以将数据发送到parse.com,然后也接收它,但是直到现在我都无法发送它,为什么?! I don't know the main reason, I put the internet and network permission in AndroidManifest.xml the parse class in application also in AndroidManifest.xml 我不知道主要原因,我将Internet和网络权限放在AndroidManifest.xml中,将解析类也放在了AndroidManifest.xml中

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.mkadaimtwo"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="21" />

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

<application
    android:name="com.example.mkadaimtwo.ParseCode"
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

and also put the parse class in application also in AndroidManifest.xml and that two codes of class and main Activity 并将parse类也放入AndroidManifest.xml中的应用程序中,该类的两个代码和main Activity

ParseCode class Activity : ParseCode类的活动:

package com.example.mkadaimtwo;

import com.parse.Parse;

import android.app.Application;

public class ParseCode extends Application {
public void onCreate() {
      Parse.initialize(this, "GIuhlGILKRd8itvCF79femTyReHM6XjVkrfLKm3X",   "Fjg4tBrMgl0mY47K4kCL7hVmXhu8FmkE2on9PlXK");
    }
  }

the MainActivity Code : MainActivity代码:

package com.example.mkadaimtwo;

   import android.app.AlertDialog;
   import android.app.ProgressDialog;
   import android.net.ParseException;
   import android.os.Bundle;
   import android.support.v7.app.ActionBarActivity;
   import android.view.View;
    import android.widget.EditText;

   import com.parse.GetCallback;
   import com.parse.ParseObject;
   import com.parse.ParseQuery;

   public class MainActivity extends ActionBarActivity {

EditText etCompanyName,etAddress,etNumberOfEmployees,etContactNumber;
ProgressDialog pd,pd2;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    etCompanyName = (EditText) findViewById(R.id.etCompanyName);
    etAddress = (EditText) findViewById(R.id.etAddress);
    etNumberOfEmployees = (EditText) findViewById(R.id.etNumberOfEmployees);
    etContactNumber = (EditText) findViewById(R.id.etContactNumber);

    pd = new ProgressDialog(this);
    pd.setTitle("wait");
    pd.setMessage("by7aml elmafrod");
    pd.setProgressStyle(ProgressDialog.STYLE_SPINNER);
    pd.setCancelable(true);


    pd2 = new ProgressDialog(this);
    pd2.setTitle("wait");
    pd2.setMessage("by7aml elmafrod");
    pd2.setProgressStyle(ProgressDialog.STYLE_SPINNER);
    pd2.setCancelable(true);

    //here we will Load the old company data from Parse.com

    ParseQuery<ParseObject> query = ParseQuery.getQuery("TestBosyApp");
    query.getInBackground("ijy1qi78g8", new GetCallback<ParseObject>() {
        public void done(ParseObject testBosyApp, ParseException e) {
            if (e == null) {

                String companyName = testBosyApp.getString("company_name");
                String address = testBosyApp.getString("address");
                String numberOfEmployees = testBosyApp.getString("number_of_employees");
                String contactNumber = testBosyApp.getString("contact_number");

                etCompanyName.setText(companyName);
                etAddress.setText(address);
                etNumberOfEmployees.setText(numberOfEmployees);
                etContactNumber.setText(contactNumber);

                pd.dismiss();


            } else {
                AlertDialog.Builder mDialoge = new AlertDialog.Builder(MainActivity.this); 
                mDialoge.setTitle("Erorr");
                mDialoge.setMessage("Check el net plz :)");
                mDialoge.setPositiveButton("ok", null);
                mDialoge.show();
            }
        }

        @Override
        public void done(ParseObject arg0, com.parse.ParseException arg1) {
            // TODO Auto-generated method stub

        }

    });

}

  public void update (View V){
    pd2.show();
    //update data in Parse

    ParseQuery<ParseObject> myQuery = ParseQuery.getQuery("TestBosyApp");

    // Retrieve the object by id
    myQuery.getInBackground("U6Gwn2tiD8", new GetCallback<ParseObject>() {
        public void done(ParseObject testBosyApp, ParseException e) {
            if (e == null) {
                //Initials our variables
                String companyName = etCompanyName.getText().toString().trim();
                String address = etAddress.getText().toString().trim();
                String numberOfEmployees = etNumberOfEmployees.getText().toString().trim();
                String contactNumber = etContactNumber.getText().toString().trim();

                //update it with new data

                testBosyApp.put("company_name", companyName);
                testBosyApp.put("address", address);
                testBosyApp.put("number_of_employees", numberOfEmployees);
                testBosyApp.put("contact_number", contactNumber);
                testBosyApp.saveInBackground();

                pd2.dismiss();

                AlertDialog.Builder mDialoge = new AlertDialog.Builder(MainActivity.this); 
                mDialoge.setTitle("2shta");
                mDialoge.setMessage("Keda eldata ra7t t2riban");
                mDialoge.setPositiveButton("cool", null);
                mDialoge.show();
            }else{
                pd2.dismiss();
                AlertDialog.Builder mDialoge = new   AlertDialog.Builder(MainActivity.this); 
                mDialoge.setTitle("Erorr");
                mDialoge.setMessage("Check el net plz :)");
                mDialoge.setPositiveButton("ok", null);
                mDialoge.show();
            }
        }

        @Override
        public void done(ParseObject arg0, com.parse.ParseException arg1) {
            // TODO Auto-generated method stub

            }
    });

}

 }

so what's the problem, progress-bar is loading without end and if I give progress-bar cancellation feature then put data in fields there's nothing happen . 所以问题是,进度条正在无休止地加载,如果我提供进度条取消功能,然后将数据放入字段中,则不会发生任何事情。 plus if anyone have tutorials for use android with parse.com please provide me with it. 另外,如果有人有与parse.com一起使用android的教程,请向我提供。

Dude.. Sir? 杜德..先生? goto parse.com, there are tutorials.. you need to enable something i just do not remember Go to settings ->App Permissions ->Allow client class creation. goto parse.com,有一些教程..您需要启用一些 我不记得的功能: 转到设置->应用程序权限->允许创建客户端类。 Set it to ON> before you can send push from device and receive it.. also your manifest is not complete.. from what i know.. 将其设置为ON>之前,您可以从设备发送推送并接收它。.据我所知,您的清单不完整。

<application
android:name="com.example.mkadaimtwo.ParseCode"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
    android:name=".MainActivity"
    android:label="@string/app_name" >
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />

        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>

//edit started here
<service android:name="com.parse.PushService" />

    <receiver android:name="com.parse.ParseBroadcastReceiver" >
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED" />
            <action android:name="android.intent.action.USER_PRESENT" />
        </intent-filter>
    </receiver>
</application>

so copy and paste this manifest 因此复制并粘贴此清单

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM