“textInputLayout sur cliquez sur Afficher la boîte de dialogue” Réponses codées

textInputLayout sur cliquez sur Afficher la boîte de dialogue

<com.google.android.material.textfield.TextInputLayout
    android:id="@+id/country_chooser_layout"
    style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="8dp"
    android:layout_marginBottom="8dp">
    
    <com.google.android.material.textfield.TextInputEditText
        android:id="@+id/country_chooser"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:clickable="true"
        android:drawableEnd="@drawable/ic_expand_arrow"
        android:focusable="false"
        android:hint="Country"
        android:inputType="textCapWords" />
</com.google.android.material.textfield.TextInputLayout>
Unusual Unicorn

textInputLayout sur cliquez sur Afficher la boîte de dialogue

val countryChooser = view.findViewById<TextInputEditText>(R.id.country_chooser)
countryChooser.setOnClickListener { v -> showCountryDialog(v) }
Unusual Unicorn

Réponses similaires à “textInputLayout sur cliquez sur Afficher la boîte de dialogue”

Questions similaires à “textInputLayout sur cliquez sur Afficher la boîte de dialogue”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code