(rm) tootaction ...for keep easier action , we will distribute every result inside the activity
This commit is contained in:
parent
b0f848b0f7
commit
6ce3b98615
1 changed files with 0 additions and 51 deletions
|
@ -1,51 +0,0 @@
|
|||
package com.keylesspalace.tusky.db;
|
||||
|
||||
import android.os.AsyncTask;
|
||||
import android.text.TextUtils;
|
||||
import android.util.Log;
|
||||
|
||||
import com.keylesspalace.tusky.TuskyApplication;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Created by cto3543 on 29/06/2017.
|
||||
*
|
||||
*/
|
||||
|
||||
public class TootAction {
|
||||
|
||||
private static TootDao tootDao = TuskyApplication.getDB().tootDao();
|
||||
|
||||
public static void getAllToot() {
|
||||
new AsyncTask<Void, Void, List<TootEntity>>() {
|
||||
@Override
|
||||
protected List<TootEntity> doInBackground(Void... params) {
|
||||
return tootDao.loadAll();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onPostExecute(List<TootEntity> tootEntities) {
|
||||
super.onPostExecute(tootEntities);
|
||||
for (TootEntity t : tootEntities) {
|
||||
Log.e("toot", "id=" + t.getUid() + "text=" + t.getText());
|
||||
}
|
||||
}
|
||||
}.execute();
|
||||
}
|
||||
|
||||
public static void saveTheToot(String s) {
|
||||
if (!TextUtils.isEmpty(s)) {
|
||||
final TootEntity toot = new TootEntity();
|
||||
toot.setText(s);
|
||||
new AsyncTask<Void, Void, Void>() {
|
||||
@Override
|
||||
protected Void doInBackground(Void... params) {
|
||||
tootDao.insert(toot);
|
||||
return null;
|
||||
}
|
||||
}.execute();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue