“dialog TextInputLayout On Click Show” Kode Jawaban

dialog TextInputLayout On Click Show

<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

dialog TextInputLayout On Click Show

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

Jawaban yang mirip dengan “dialog TextInputLayout On Click Show”

Pertanyaan yang mirip dengan “dialog TextInputLayout On Click Show”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya