文章結構:
一、需求闡述
技術部同事提出想要在APP上儲存最近輸入成功的5個金鑰資訊,同時支援可以下拉進行選擇。
這也是為了方便客戶在現在多次輸入資訊,幫助其快速進行輸入。
二、實現思路:
目前想要實現的需求
1、想要實現儲存使用者輸入的金鑰資訊。
2、通過點選右側的下拉來觸發,讓使用者去選擇已經傳送成功的資訊。
3、通過SharedPreferences來儲存每次APP退出後的資料。
4、當傳送成功後,更新後臺的儲存資料,進行邏輯判斷。
三、程式碼邏輯
下面圖片是最終的實現效果,當輸入標識和金鑰,點選傳送按鈕,成功後將資料自動儲存到後臺的陣列中。點選右側的下拉圖示後,在將其彈出。
後面又新增了清空歷史記錄的標籤,就是在每一次新增更新後臺陣列後,陣列的下一個標籤為清空歷史記錄。
1 s_btnDown.setOnClickListener(this); //對其進行焦點監聽
1 case R.id.btnDown:
2 showListPopulWindow(); //呼叫顯示PopuWindow 函式
3 break;
點選後觸發PopuWindow函式,也就是將其下拉框,繫結到TextBox標籤的下面。
1 private void showListPopulWindow() {
2 final DeviceKeySecretManager list = ((MainActivity)getActivity()).deviceKeySecretManager;//要填充的資料
3 final ListPopupWindow listPopupWindow;
4 listPopupWindow = new ListPopupWindow(getActivity());
5 listPopupWindow.setAdapter(new ArrayAdapter<String>(getActivity(), android.R.layout.simple_list_item_1, list.getKeyList()));//用android內建佈局,或設計自己的樣式
6 listPopupWindow.setAnchorView(s_etAppKey); //以哪個控制元件為基準,在該處以mEditText為基準
7 listPopupWindow.setModal(true);
8
9 listPopupWindow.setOnItemClickListener(new AdapterView.OnItemClickListener() { //設定項點選監聽
10 @Override
11 public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) {
12 if (list.KeySecretSum==i){
13 list.Clear(); //點選清空
14 s_etAppKey.setText(""); //把選擇的選項內容展示在EditText上
15 s_etAppSecret.setText("");
16 }else{
17 s_etAppKey.setText(list.getKeyList()[i]); //把選擇的選項內容展示在EditText上
18 s_etAppSecret.setText(list.getSecretList()[i]);
19 }
20
21 listPopupWindow.dismiss(); //如果已經選擇了,隱藏起來
22 }
23 });
24 listPopupWindow.show(); //把ListPopWindow展示出來
25 }
金鑰管理的邏輯類:
用於在傳送成功後將歷史金鑰資訊進行快取,後期將其繫結到下拉選單中,也為了在APP退出和首次載入時,將資料儲存和提取到快取中。
1 /**
2 * 標識和金鑰管理
3 * 最多隻儲存5個金鑰,超過5個就開始進行迴圈覆蓋(從第一個開始)。
4 */
5 class DeviceKeySecretManager {
6
7 public DeviceKeySecretManager() {
8 CurrentSaveIndex = 0;
9 }
10
11 public String[] getKeyList() {
12 return KeyList;
13 }
14
15 public String[] getSecretList() {
16 return SecretList;
17 }
18
19 /**
20 * 新增新到的key和secret到金鑰庫
21 * 1、先判斷金鑰庫中是否存在key,如果存在則直接更新其secret值,
22 * 2、不存在則直接進行新增key/secret值。
23 */
24 public void addBufferKeyAndSecret(String key, String secret) {
25 if (IntegerConversion.UseLoop(KeyList,key)) {
26 int index=0;
27 for (int i=0;i<KeyList.length;i++) {
28 if (KeyList[i].equals(key)){
29 index=i;
30 break;
31 }
32 }
33 KeyList[index]=key;
34 SecretList[index]=secret;
35 } else {
36 if (KeySecretSum == 5) {
37 CurrentSaveIndex = CurrentSaveIndex == 5 ? 0 : CurrentSaveIndex;
38 KeyList[CurrentSaveIndex] = key;
39 SecretList[CurrentSaveIndex] = secret;
40 CurrentSaveIndex++;
41 } else {
42 KeyList[CurrentSaveIndex] = key;
43 SecretList[CurrentSaveIndex] = secret;
44 CurrentSaveIndex++;
45 KeySecretSum++;
46 KeyList[CurrentSaveIndex] = "清空歷史記錄";
47 }
48 }
49 }
50
51 public void Clear() {
52 CurrentSaveIndex = 0;
53 KeySecretSum = 0;
54
55 for (int i = 0; i < KeyList.length; i++) {
56 KeyList[i] = null;
57 }
58
59 for (int i = 0; i < SecretList.length; i++) {
60 SecretList[i] = null;
61 }
62 }
63
64 public int CurrentSaveIndex = 0; //當前儲存的序號
65 public int KeySecretSum = 0; //key的總個數,最多儲存5個。
66 private String[] KeyList = new String[6];
67 private String[] SecretList = new String[5];
68 }
APP退出和首次載入時,對資料在本地進行儲存和提取;
1 /**
2 * 讀取儲存的檔案
3 */
4 private void getSavedPreference() {
5 try {
6 SharedPreferences pref = this.getSharedPreferences(getResources().getString(R.string.app_name), MODE_PRIVATE);
7 int sum=pref.getInt("KeySecretSum", 0);
8
9 for (int i=0;i<=sum;i++){
10 deviceKeySecretManager.getKeyList()[i]=pref.getString("Key"+i, "");
11 }
12
13 for (int i=0;i<sum;i++){
14 deviceKeySecretManager.getSecretList()[i]=pref.getString("Secret"+i, "");
15 }
16
17 deviceKeySecretManager.CurrentSaveIndex=sum==5?0:sum;
18 deviceKeySecretManager.KeySecretSum=sum;
19 } catch (Exception ex) {
20
21 }
22 }
23
24 /**
25 * 儲存檔案
26 * */
27 private void setSavePreference() {
28 try {
29 SharedPreferences pref = getSharedPreferences(getResources().getString(R.string.app_name), MODE_PRIVATE);
30 SharedPreferences.Editor edit = pref.edit();
31 edit.putInt("KeySecretSum", deviceKeySecretManager.KeySecretSum); //現有儲存的總個數
32
33 for (int i=0;i<=deviceKeySecretManager.KeySecretSum;i++){
34 edit.putString("Key"+i, deviceKeySecretManager.getKeyList()[i]);
35 }
36
37 for (int i=0;i<deviceKeySecretManager.KeySecretSum;i++){
38 edit.putString("Secret"+i, deviceKeySecretManager.getSecretList()[i]);
39 }
40 edit.commit();
41 } catch (Exception ex) {
42
43 }
44 }
下面是當傳送成功後的業務邏輯:
1 @Override
2 public void onClick(View v) {
3 switch (v.getId()) {
4 case R.id.btnSendData:
5 if (!DeviceManager.getInstance().DeviceIsConnected()) {
6 tu.ToastShow(context, "裝置已斷開連線,無法進行通訊。");
7 return;
8 }
9 if (DeviceManager.getInstance().DeviceIsBusy()) {
10 tu.ToastShow(context, "裝置忙碌,請等待...");
11 return;
12 }
13 try {
14 String key,secret;
15 key=s_etAppKey.getText().toString();
16 secret=s_etAppSecret.getText().toString();
17
18 if (key.length()<=0||secret.length()<=0||
19 TextUtils.isEmpty(key)||TextUtils.isEmpty(secret)){
20 tu.ToastShow(context, "標識和金鑰不能為空!");
21 return;
22 }
23
24 //呼叫方法拼接字串,傳送給下位機裝置。
25 int nResult = DeviceManager.getInstance().WriteRTKData(context, new byte[]{});
26 if (nResult > 0) {
27 tu.ToastShow(context, "引數寫入成功");
28
29 ((MainActivity)getActivity()).deviceKeySecretManager.addBufferKeyAndSecret(key,secret);
30 }
31 } catch (Exception ex) {
32 tu.ToastShow(context, "引數寫入失敗!");
33 }
34 break;
35 case R.id.btnClearData: //只清空當前的標識和金鑰
36 s_etAppKey.setText("");
37 s_etAppSecret.setText("");
38 break;
39 case R.id.btnDown:
40 showListPopulWindow(); //呼叫顯示PopuWindow 函式
41 break;
42 default:
43 break;
44 }
45 }
總結:
通過上面的業務分析,程式碼實現就可以實現具體的需求,儲存下最近5個的歷史記錄。
其實對於寫程式而言,難的不是語法和技巧,而是程式設計思想,對於同一個問題/需求,不同的人有不同的解決辦法,誰也不能說誰的方法是錯誤的,只能說誰的方法是目前為止最有效的。
小寄語
一個人的奮鬥,像懷孕一樣,日子久了,總會被看出來的。
人生短暫,我不想去追求自己看不見的,我只想抓住我能看的見的。
我是哉說,謝謝您的閱讀,希望和你一起進步、成長。
如果對您有幫助,麻煩點贊,轉發。