我无法理解让我的应用与服务器通信以存储数据的基础知识。
我正在尝试使用Parse(https://parse.com/)作为我正在处理的Android应用程序的后端。我得到了基本的“快速入门”解析应用程序正常,并且能够使用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>
谁能看到我做错了什么?
答案 0 :(得分:0)
您是否在清单文件中添加了Internet权限?
<uses-permission android:name="android.permission.INTERNET"></uses-permission>