アプリをサーバーと通信してデータを保存するという基本を理解するのに苦労しています。
作業中のAndroidアプリのバックエンドとしてParse(https://parse.com/)を使用しようとしています。基本的な「クイックスタート」Parseアプリが正常に機能し、onCreate()メソッドを使用して携帯電話のアプリからParseアカウントにデータをアップロードできました。次に、ボタンが押されたときにデータをアップロードするアプリを作成しようとしました。アプリをインストールして実行できますが、ボタンを押しても何も起こらないようで、Parseアカウントを確認してもデータがアップロードされていません。Parse libsを含めて、ビルドパスに追加しました。
これがアプリコードです-
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>
誰かが私が間違っていることを見ることができますか?