|
| AdapterListe (Context context, int ressource, ArrayList< String > donnees) |
|
void | desactiverItem (int position) |
|
View | getView (int position, @Nullable View convertView, ViewGroup parent) |
|
Définition à la ligne 543 du fichier IHMGestionRencontre.java.
◆ AdapterListe()
com.example.area.IHMGestionRencontre.AdapterListe.AdapterListe |
( |
Context |
context, |
|
|
int |
ressource, |
|
|
ArrayList< String > |
donnees |
|
) |
| |
Définition à la ligne 549 du fichier IHMGestionRencontre.java.
551 super(context,ressource,donnees);
553 this.inflater = LayoutInflater.from(context);
554 this.ressource = ressource;
Vector< Integer > positionsDesactivees
◆ desactiverItem()
void com.example.area.IHMGestionRencontre.AdapterListe.desactiverItem |
( |
int |
position | ) |
|
Définition à la ligne 591 du fichier IHMGestionRencontre.java.
593 Log.d(
TAG,
"desactiverItem()");
static final String TAG
TAG pour les logs.
Vector< Integer > positionsDesactivees
◆ getView()
View com.example.area.IHMGestionRencontre.AdapterListe.getView |
( |
int |
position, |
|
|
@Nullable View |
convertView, |
|
|
ViewGroup |
parent |
|
) |
| |
Définition à la ligne 558 du fichier IHMGestionRencontre.java.
560 Log.d(
TAG,
"getView()");
561 if (convertView == null)
563 convertView = inflater.inflate(ressource,parent,
false);
566 CheckedTextView textView = convertView.findViewById(android.R.id.text1);
567 textView.setText(Html.fromHtml(
this.getItem(position)));
570 textView.setEnabled(
false);
571 textView.setClickable(
false);
572 textView.setOnClickListener(null);
576 textView.setEnabled(
true);
577 textView.setClickable(
true);
578 textView.setOnClickListener(
new View.OnClickListener()
581 public void onClick(View v)
ListView listeParties
La liste des parties.
static final String TAG
TAG pour les logs.
Vector< Integer > positionsDesactivees
◆ positionsDesactivees
Vector<Integer> com.example.area.IHMGestionRencontre.AdapterListe.positionsDesactivees = null |
|
private |
La documentation de cette classe a été générée à partir du fichier suivant :