在我的應用IM給用戶的搜索布頓從GOOGLEPLAY商店搜索應用,並保存在數據庫應用程序的名稱,所以我寫Play商店中的網址在我的代碼 所以當用戶打開playstire是找到任何產品並安裝我只是想保存eproduct id保存在數據庫中我該怎麼做 ?我如何保存從url唯一項目?我如何保存Playstore安裝應用程序ID?
Uri uri = Uri.parse("https://play.google.com/store/apps");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
當用戶點擊這個按鈕Play商店中開放假設用戶searcj產品和安裝的網址是這個
https://play.google.com/store/apps/details?id=com.imangi.templerun2&
feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5pbWFuZ2kudGVtcGxlcnVuMiJd
如何保存唯一ID構成本UL數據庫是id=com.imangi.templerun2
按照本教程http://www.androidhive.info/2011/11/android-sqlite-database-tutorial/ – MDMalik
查看Android培訓指南的這一部分:http://developer.android.com/training/ b asics/data-storage/index.html – Evilunclebill
不,不知道如何保存在數據庫中只是打電話給我什麼應用程序用戶從應用程序商店安裝我如何保存是數據庫中的ID?如何diffrenciate ID從URL –