我创建了一个名为NoteApp的示例应用程序,它可以将数据保存到Parse。我已经按照下面的图像在Parse中创建了应用程序,并创建了应用程序......它仍在进行中。
我创建了对象" testObject",我已经匹配了ID和导入的数据(Ctrl + Shift + O)但是当我尝试运行应用程序并检查Parse仪表板时,我可以&# 39;看到正在创建的对象。我已经尝试了很多次,但我不知道问题出在哪里。我只是无法在eclipse中将我的Android应用程序与Parse.com联系起来。应用无法创建对象,因此我无法保存数据。
这是应用程序代码,清单文件以及Parse.com仪表板的图像。
NoteApplication.java
package com.echessa.noteapp;![enter image description here][1]
import android.app.Application;
import com.parse.Parse;
import com.parse.ParseObject;
public class NoteApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
Parse.initialize(NoteApplication.this, "XXXXXXXXXXXXXXXX","XXXXXXXXXXXXXXXXXX");
ParseObject testObject = new ParseObject("TestObject");
testObject.put("foo", "bar");
testObject.saveInBackground();
}
}
清单文件
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.echessa.noteapp"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="21" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:name="com.echessa.noteapp.NoteApplication"
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>
</manifest>
&#13;