視訊直播原始碼,實現本地儲存搜尋歷史記錄

zhibo系統開發發表於2022-07-05

視訊直播原始碼,實現本地儲存搜尋歷史記錄

1、build.gradle:

dependencies {
    api 'com.tencent:mmkv-static:1.2.10'
}


2、Application初始化:

//rootDir是本地儲存資料夾
String rootDir = MMKV.initialize(this);
MMKV kv = MMKV.mmkvWithID("search_history_id", MMKV.MULTI_PROCESS_MODE);
App.kv = kv;
 
 
//App是一個公共類
public class App {
    public static MMKV kv;
}


3、 儲存、獲取歷史記錄Util類  把之前用的sp註釋掉了  如果想用也可以參考

public class SearchHistoryUtil {
    //儲存搜尋歷史記錄
    public static void savaSearchWord(String keyword){
//        String searchHistoryData = TeSharedPreferences.getInstance().getString("search_history");
        String searchHistoryData = App.kv.decodeString("search_history");
        if(searchHistoryData != null){
            String[] tmpHistory = searchHistoryData.split(","); //逗號擷取 儲存在陣列中
            List<String> historyList = new ArrayList<String>(Arrays.asList(tmpHistory)); //將該陣列轉換成ArrayList
            if (historyList.size() > 0) {
                //1.移除之前重複新增的元素
                for (int i = 0; i < historyList.size(); i++) {
                    if (keyword.equals(historyList.get(i))) {
                        historyList.remove(i);
                        break;
                    }
                }
                historyList.add(0, keyword); //將新輸入的文字新增集合的第0位也就是最前面(2.倒序)
                if (historyList.size() > 10) {
                    historyList.remove(historyList.size() - 1); //3.最多儲存10條搜尋記錄 刪除最早搜尋的那一項
                }
                //逗號拼接
                StringBuilder sb = new StringBuilder();
                for (int i = 0; i < historyList.size(); i++) {
                    sb.append(historyList.get(i) + ",");
                }
                //儲存到sp
//            TeSharedPreferences.getInstance().putString("search_history",sb.toString());
                App.kv.encode("search_history", sb.toString());
            } else {
                //之前未新增過
//            TeSharedPreferences.getInstance().putString("search_history",keyword);
                App.kv.encode("search_history", keyword);
            }
        }else{
            App.kv.encode("search_history", keyword);
        }
 
        Log.e("search_history", "搜尋歷史記錄:" + App.kv.decodeString("search_history"));
    }
 
    //獲取搜尋記錄
    public static List<String> getSearchHistory() {
//        String longHistory = TeSharedPreferences.getInstance().getString("search_history");
        String longHistory = App.kv.decodeString("search_history");
        if(longHistory != null){
            String[] tmpHistory = longHistory.split(","); //split後長度為1有一個空串物件
            List<String> historyList = new ArrayList<String>(Arrays.asList(tmpHistory));
            if (historyList.size() == 1 && historyList.get(0).equals("")) { //如果沒有搜尋記錄,split之後第0位是個空串的情況下
                historyList.clear();  //清空集合,這個很關鍵
            }
            return historyList;
        }
        return new ArrayList<>();
    }


4、sp程式碼

import android.content.Context;
import android.content.SharedPreferences;
 
import com.jumei.base.app.AppGlobalVar;
 
import java.util.HashMap;
import java.util.Map;
 
public class TeSharedPreferences {
 
    private static final String APP_COMMON = "app_common";
    public static final String APP_COOKIES = "app_cookies";
    public static final String APP_INIT = "app_init";
 
    private final SharedPreferences sharedPreferences;
 
    private static final HashMap<String, TeSharedPreferences> preferencesManagerHashMap = new HashMap<>();
 
    public static TeSharedPreferences getInstance() {
        return getInstance(APP_COMMON);
    }
 
    public static TeSharedPreferences getInstance(String fileName) {
        TeSharedPreferences instance = preferencesManagerHashMap.get(fileName);
        if (instance == null) {
            instance = new TeSharedPreferences(fileName);
            preferencesManagerHashMap.put(fileName, instance);
        }
 
        return instance;
    }
 
    private TeSharedPreferences(String fileName) {
        sharedPreferences = App.appContext.getSharedPreferences(fileName, Context.MODE_PRIVATE);
    }
 
    public void putString(String key, String value) {
        sharedPreferences.edit().putString(key, value).apply();
    }
 
    public void putBoolean(String key, boolean value) {
        sharedPreferences.edit().putBoolean(key, value).apply();
    }
 
    public void putInt(String key, int value) {
        sharedPreferences.edit().putInt(key, value).apply();
    }
 
    public void putFloat(String key, float value) {
        sharedPreferences.edit().putFloat(key, value).apply();
    }
 
    public String getString(String key) {
        return sharedPreferences.getString(key, "");
    }
 
    public String getString(String key, String defValue) {
        return sharedPreferences.getString(key, defValue);
    }
 
    public boolean getBoolean(String key, boolean defValue) {
        return sharedPreferences.getBoolean(key, defValue);
    }
 
    public int getInt(String key, int defValue) {
        return sharedPreferences.getInt(key, defValue);
    }
 
    public float getFloat(String key, float defValue) {
        return sharedPreferences.getFloat(key, defValue);
    }
 
    public Map<String, ?> getAll() {
        try {
            return sharedPreferences.getAll();
        } catch (Exception e) {
            return null;
        }
    }
 
    public void clear() {
        SharedPreferences.Editor editor = sharedPreferences.edit();
        editor.clear();
        editor.apply();
    }
}


以上就是 視訊直播原始碼,實現本地儲存搜尋歷史記錄,更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2904311/,如需轉載,請註明出處,否則將追究法律責任。

相關文章