共用方式為


FillEventHistory.Event.ManuallyEnteredField 屬性

定義

傳回服務提供的數據集上可用的欄位,但使用者手動輸入。

public System.Collections.Generic.IDictionary<Android.Views.Autofill.AutofillId,System.Collections.Generic.ICollection<string>> ManuallyEnteredField { [Android.Runtime.Register("getManuallyEnteredField", "()Ljava/util/Map;", "", ApiSince=28)] get; }
[<get: Android.Runtime.Register("getManuallyEnteredField", "()Ljava/util/Map;", "", ApiSince=28)>]
member this.ManuallyEnteredField : System.Collections.Generic.IDictionary<Android.Views.Autofill.AutofillId, System.Collections.Generic.ICollection<string>>

屬性值

map 對應,其索引鍵是手動輸入字段的標識碼,而值是具有該值但未由用戶選取之數據集的標識符。

屬性

備註

傳回服務提供的數據集上可用的欄位,但使用者手動輸入。

例如,伺服器提供:

FillResponse response = new FillResponse.Builder()
                 .addDataset(new Dataset.Builder(presentation1)
                     .setId("4815")
                     .setValue(usernameId, AutofillValue.forText("MrPlow"))
                     .setValue(passwordId, AutofillValue.forText("AyCaramba"))
                     .build())
                 .addDataset(new Dataset.Builder(presentation2)
                     .setId("162342")
                     .setValue(usernameId, AutofillValue.forText("ElBarto"))
                     .setValue(passwordId, AutofillValue.forText("D'OH"))
                     .build())
                 .addDataset(new Dataset.Builder(presentation3)
                     .setId("108")
                     .setValue(usernameId, AutofillValue.forText("MrPlow"))
                     .setValue(passwordId, AutofillValue.forText("D'OH"))
                     .build())
                 .build();

使用者不會選取數據集,但手動輸入:

username = "MrPlow";
              password = "D'OH";

然後結果是下列對應:

usernameId => { "4815", "108"}
              passwordId => { "162342", "108" }

<b>注意: </b>只在 類型的 #TYPE_CONTEXT_COMMITTED事件上設定。

android.service.autofill.FillEventHistory.Event.getManuallyEnteredField()Java 檔。

此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。

適用於