簡體   English   中英

使 TextInputEditText 默認為焦點

[英]Make TextInputEditText focussed by default

我的活動中有一堆 TextInputEditText 字段。 我希望默認情況下關注最上面的那個。 但我無法讓它工作。 我的最小 SDk 版本是 21。

androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/black"
android:focusableInTouchMode="true"
tools:context=".MyActivity">

<com.google.android.material.textfield.TextInputLayout
    android:id="@+id/myTitle"
    style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="40dp"
    android:layout_marginLeft="16dp"
    android:layout_marginRight="16dp"
    android:hint="My  Title"
    app:counterEnabled="true"
    app:counterMaxLength="20"
    app:endIconMode="clear_text"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:boxBackgroundColor="@color/black"
    android:textColorHint="@color/text_color"
    app:boxStrokeWidthFocused="2dp"
    app:boxStrokeColor="@drawable/outlined_box"
    app:hintTextColor="@color/text_color"
    android:focusedByDefault="true"
    android:focusable="true"
    app:endIconTint="@color/text_color"
    app:layout_constraintTop_toTopOf="parent">

    <com.google.android.material.textfield.TextInputEditText
        android:layout_width="match_parent"
        android:focusedByDefault="true"
        android:textColor="@color/white"
        android:layout_height="wrap_content"

        />

</com.google.android.material.textfield.TextInputLayout>
... more TextInputs

我的大綱框是一個選擇器,如下所示

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:color="@color/white" android:state_focused="true"/>
    <item android:color="@color/white" android:state_hovered="true"/>
    <item android:color="@color/white" android:state_enabled="false"/>
    <item android:color="@color/text_color"/>  <!-- unfocused -->
</selector>

所有示例都在網上看到是如何關閉默認對焦:)

嘗試請求焦點:

<com.google.android.material.textfield.TextInputEditText
        android:layout_width="match_parent"
        android:focusedByDefault="true"
        android:textColor="@color/white"
        android:layout_height="wrap_content"

        <requestFocus />

</com.google.android.material.textfield.TextInputEditText>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM