ArrayAdapter.SetNotifyOnChange(Boolean) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Controllare se i metodi che modificano l'elenco (#add
, #addAll(Collection)
, #addAll(Object[])
#insert
, #remove
, #clear
) #sort(Comparator)
chiamano #notifyDataSetChanged
automaticamente .
[Android.Runtime.Register("setNotifyOnChange", "(Z)V", "GetSetNotifyOnChange_ZHandler")]
public virtual void SetNotifyOnChange (bool notifyOnChange);
[<Android.Runtime.Register("setNotifyOnChange", "(Z)V", "GetSetNotifyOnChange_ZHandler")>]
abstract member SetNotifyOnChange : bool -> unit
override this.SetNotifyOnChange : bool -> unit
Parametri
- notifyOnChange
- Boolean
se true, le modifiche apportate all'elenco chiameranno automaticamente #notifyDataSetChanged
- Attributi
Commenti
Controllare se i metodi che modificano l'elenco (#add
, #addAll(Collection)
, #addAll(Object[])
#insert
, #remove
, #clear
) #sort(Comparator)
chiamano #notifyDataSetChanged
automaticamente . Se impostato su false, il chiamante deve chiamare manualmente notifyDataSetChanged() per riflettere le modifiche nella visualizzazione associata.
Il valore predefinito è true e la chiamata a notifyDataSetChanged() reimposta il flag su true.
Documentazione java per android.widget.ArrayAdapter.setNotifyOnChange(boolean)
.
Le parti di questa pagina sono modifiche basate sul lavoro creato e condiviso dal progetto Open Source Android e usato in base ai termini descritti nella licenza Creative Commons 2.5 Attribuzione.