1

Parse にデータベースを持つ Android の小さなプロジェクトがあります。それで、データを Parse から local datastore に変更したいのですが、Parse でローカル データストアを有効にしましたが、コードを変更する方法がわかりません。これは、Parse コードからのダウンロード データです。

try {
        ParseQuery<ParseObject> query = new ParseQuery<>("BUS_STOP");
        query.orderByAscending("stop_id");
        query.setLimit(2000);
        listA = query.find();
        for (ParseObject mBusStop : listA) {
            BusStop newBusStop = new BusStop();
            newBusStop.setName((String) mBusStop.get("name"));
            newBusStop.setStreet((String) mBusStop.get("street"));
            newBusStop.setStyle((String) mBusStop.get("Type"));
            newBusStop.setNext_id((int) mBusStop.get("next_id"));
            newBusStop.setBus_id((int) mBusStop.get("bus_id"));
            newBusStop.setStop_id((int) mBusStop.get("stop_id"));
            double x, y;
            x = (double) mBusStop.get("coor_x");
            y = (double) mBusStop.get("coor_y");
            LatLng a = new LatLng(x, y);
            newBusStop.setLatLngBus(a);
            busStops.add(newBusStop);
        }
    } catch (com.parse.ParseException e) {
        Log.e("Error", e.getMessage());
        e.printStackTrace();
    }

私のバス停クラス:

@ParseClassName("BUS_STOP")
public class BusStop extends ParseObject{
String name;
String street;
String style;
LatLng latLngBus;
int bus_id;
int next_id;
int stop_id;
public int getStop_id() {
    return stop_id;
}
public void setStop_id(int stop_id) {
    this.stop_id = stop_id;
}

public int getNext_id() {
    return next_id;
}

public void setNext_id(int next_id) {
    this.next_id = next_id;
}

public int getBus_id() {
    return bus_id;
}

public void setBus_id(int bus_id) {
    this.bus_id = bus_id;
}

public String getName() {
    return name;
}

public void setName(String name) {
    this.name = name;
}

public String getStreet() {
    return street;
}

public void setStreet(String street) {
    this.street = street;
}

public String getStyle() {
    return style;
}

public void setStyle(String style) {
    this.style = style;
}

public LatLng getLatLngBus() {
    return latLngBus;
}

public void setLatLngBus(LatLng latLngBus) {
    this.latLngBus = latLngBus;
}

私のアプリケーションファイル:

public class FindingBusStop extends android.app.Application {
@Override
public void onCreate() {
    super.onCreate();
    Parse.enableLocalDatastore(getApplicationContext());
    ParseObject.registerSubclass(BusStop.class);
}

どうすれば修正できますか?

4

2 に答える 2

2

まず、データを保存するときに、データ (ParseObject をローカル データベースに関連付ける用語) をローカル データベースに「固定」する必要があります。たとえば、ボタンを押したときにデータが保存される場合は、setOnClickListener() に次を追加する必要があります。

ParseObject gameScore = new ParseObject("GameScore");
gameScore.put("score", 1337);
gameScore.put("playerName", "Sean Plott");
gameScore.put("cheatMode", false);

//この行を使用してオブジェクトをローカル DB に固定し、そこに保存します

gameScore.pinInBackground();

別の関数 .pinAll() または pinAllInBackgroud() もあります

次に、上記のコードの try セクションで、find() 呼び出しの前に次を追加する必要があります。

query.fromLocalDataStore();

バックグラウンド スレッドでデータをフェッチする findinbackground() または getinbackground() 関数を使用することもできます。

こちらのドキュメントも役立ちますhttps://parse.com/docs/android/guide#local-datastore-querying

于 2015-12-24T13:10:41.767 に答える