我无法超越让我的应用程序与服务器通信以存储数据的基础知识。
我正在尝试使用 Parse (https://parse.com/) 作为我正在开发的 Android 应用程序的后端。我的基本“快速入门”Parse 应用程序运行良好,并且能够使用 onCreate() 方法将数据从手机上的应用程序上传到我的 Parse 帐户。然后我尝试创建一个应用程序,它会在按下按钮时上传一些数据。我可以安装并运行该应用程序,但是当我按下按钮时似乎什么也没有发生,然后当我检查我的 Parse 帐户时,没有上传任何数据。我包含了 Parse 库并将它们添加到构建路径中。
这是应用程序代码-
package greg.mariani.saveLoad;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import com.parse.Parse;
import com.parse.ParseObject;
public class SaveLoad1Activity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
Parse.initialize(this, "private_app_token1", "private_app_token2");
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
public void saveUpdates(View view) {
ParseObject updates = new ParseObject("Updates");
updates.put("court", "Brentwood Rec");
updates.put("update", "Game On");
updates.saveInBackground();
}
}
这是布局xml-
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/save"
android:onClick="saveUpdates"/>
</LinearLayout>
谁能看到我做错了什么?