本文介紹了SQLite MVVM在活動(dòng)中返回和獲取rowID(&A)的處理方法,對(duì)大家解決問(wèn)題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)吧!
問(wèn)題描述
我有一個(gè)使用MVVM構(gòu)建的應(yīng)用程序。我讓?xiě)?yīng)用程序成功地插入到SQLite數(shù)據(jù)庫(kù)中。我現(xiàn)在正在嘗試在插入完成后獲取數(shù)據(jù)庫(kù)中的rowId,以便在后續(xù)活動(dòng)中可以對(duì)該行進(jìn)行更新。
我完全理解DAO中將void更改為long的部分,但是我不知道如何在活動(dòng)級(jí)別實(shí)際訪問(wèn)這么長(zhǎng)的時(shí)間,并將其保存到可以使用Intent.PUTEXTRA從一個(gè)活動(dòng)發(fā)送到另一個(gè)活動(dòng)的變量中。下面是代碼示例。
表/實(shí)體類:
@Entity(tableName = "CbtTable")
public class CbtTable {
@PrimaryKey(autoGenerate = true)
private long cbtId;
存儲(chǔ)庫(kù)類:
public class CbtRepository {
private CbtDao cbtDao;
private LiveData<List<CbtTable>> cbtData;
private FeelingFitDatabase mFeelingFitDatabase;
public CbtRepository(Application application) {
mFeelingFitDatabase = FeelingFitDatabase.getInstance(application);
cbtDao = mFeelingFitDatabase.getCbtDao();
cbtData = cbtDao.getCbtData();
}
public void insertCbt(CbtTable cbtTable){
new InsertCbtAsyncTask(cbtDao).execute(cbtTable);
}
DAO
@Dao
public interface CbtDao {
@Insert(onConflict = REPLACE)
public long insertAutoThought(CbtTable cbtTable);
@Query("UPDATE CbtTable SET automaticThought = :automaticThought WHERE cbtId = :cbtId")
void updateAutoThought(long cbtId, String automaticThought);
@Query ("UPDATE CbtTable SET twistedThinking = :twistedThinking WHERE cbtId = :cbtId")
void updateTwistedThinking(long cbtId, int twistedThinking);
ViewModel類:
public class CbtViewModel extends AndroidViewModel {
private CbtRepository cbtRepository;
private LiveData<List<CbtTable>> cbtData;
public CbtViewModel(@NonNull Application application) {
super(application);
cbtRepository = new CbtRepository(application);
cbtData = cbtRepository.getCbtData();
}
public void insert(CbtTable cbtTable){
cbtRepository.insertCbt(cbtTable);
}
public void updateTwistedThinking(CbtTable cbtTable){
cbtRepository.updateTwistedThinking(cbtTable);
}
異步任務(wù)類:
public class InsertCbtAsyncTask extends AsyncTask<CbtTable, Void, Void> {
private CbtDao mCbtDao;
public InsertCbtAsyncTask(CbtDao cbtDao){
mCbtDao = cbtDao;
}
@Override
protected Void doInBackground(CbtTable... cbtTables) {
mCbtDao.insertAutoThought(cbtTables[0]);
return null;
}
活動(dòng)方式:
private void saveAutomaticThought(){
CbtTable cbtTable = new CbtTable(userId, automaticThoughtString, twistedThinking, challengeThoughtString, rationalThoughtString, postedWorkout);
cbtViewModel.insert(cbtTable);
long cbtId = cbtTable.getCbtId();
// Sends the user to the WorkoutAutomaticThoughtActivity page
Intent intent = new Intent(this, WorkoutTwistedThinkingActivity.class);
intent.putExtra("cbtId", cbtId);
使用活動(dòng)中的上述代碼,cbtId存儲(chǔ)為0,因此無(wú)法工作。這是一款免費(fèi)的心理健康應(yīng)用程序,我正在開(kāi)發(fā)它,試圖幫助人們,所以我越早解決這個(gè)問(wèn)題,我就能越早推出這款應(yīng)用程序。我將非常感謝任何幫助來(lái)調(diào)試這個(gè)問(wèn)題,并使其工作。
推薦答案
我不建議您使用異步任務(wù)。但是你可以做這樣的事情。
使您的InsertCbtAsyncTask接受回調(diào)作為參數(shù),并在它具有插入的ID后調(diào)用它:
public class InsertCbtAsyncTask extends AsyncTask<CbtTable, Void, Void> {
private CbtDao mCbtDao;
private long id;
private DoWithId callback;
public InsertCbtAsyncTask(CbtDao cbtDao, DoWithId callback){
mCbtDao = cbtDao;
this.callback = callback;
}
@Override
protected Void doInBackground(CbtTable... cbtTables) {
id = mCbtDao.insertAutoThought(cbtTables[0]);
return null;
}
@Override
protected void onPostExecute(Void aVoid) {
callback.doWithId(id);
}
interface DoWithId {
public void doWithId(long id);
}
}
然后,在調(diào)用該類時(shí),您可以將回調(diào)作為參數(shù)傳遞。例如:
DoWithId callback = new DoWithId() {
@Override
public void doWithId(long id) {
launchIntentWithId(id)
}
};
new InsertCbtAsyncTask(cbtDao, callback).execute(cbtTable);
launchIntentWithId()
如下所示:
public launchIntentWithId(long cbtId) {
Intent intent = new Intent(this, WorkoutTwistedThinkingActivity.class);
intent.putExtra("cbtId", cbtId);
startActivity(Intent);
}
此代碼未經(jīng)過(guò)測(cè)試,可能不完整,但它應(yīng)該會(huì)讓您有一個(gè)完整的概念。
這篇關(guān)于SQLite MVVM在活動(dòng)中返回和獲取rowID(&A)的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,