簡體   English   中英

Android:CustomView 中的 EditText 在觸摸時未按預期運行

[英]Android: EditText in CustomView not behaving as expected when touched

我有一個 CustomView,其中包含一個 LinearLayout,其中包含一個 EditText 和另一個自定義視圖元素。 但是,當我運行我的應用程序並觸摸 EditText 時,它的行為與預期不同(似乎沒有獲得焦點並且軟鍵盤沒有打開)。 我試過在 EditText 和 LinearLayout 上設置duplicateParentState="true"。 我還附加了一個 onTouchEventListener 到 EditText,它調用了一個簡單的 toast 並且 toast 確實出現了。

這是我的 CustomView 的代碼。

表單字段.xml

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="horizontal"
    android:layout_marginBottom="15dp"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/grey_rounded_borders">

    <EditText
        android:id="@+id/edit_text"
        android:layout_weight="1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:inputType="text"
        android:padding="10dp"
        android:textColor="#2d6169"
        android:textSize="18sp"
        android:background="@color/transparent" />

    <RelativeLayout
        android:layout_marginStart="5dp"
        android:layout_marginEnd="10dp"
        android:layout_width="wrap_content"
        android:layout_height="match_parent">

        <com.example.app.ValidationIcon
            android:id="@+id/validation_icon"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            tools:ignore="ContentDescription" />

    </RelativeLayout>

</LinearLayout>

表單域.java

package com.example.app;

import android.content.Context;
import android.content.res.TypedArray;
import android.text.InputType;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.View;
import android.widget.EditText;
import android.widget.LinearLayout;

import java.util.ArrayList;

public class FormField extends LinearLayout {

    private EditText editText;
    private ValidationIcon validationIcon;

    private Integer fieldInputType;
    private String fieldInputHint;

    public FormField(Context context)
    {
        super(context);
    }

    public FormField(Context context, AttributeSet attributeSet)
    {
        super(context, attributeSet);

        TypedArray attrs = context.obtainStyledAttributes(attributeSet, R.styleable.FormField, 0, 0);

        fieldInputType = attrs.getInt(
                R.styleable.FormField_fieldInputType,
                InputType.TYPE_TEXT_VARIATION_NORMAL
        );
        fieldInputHint = attrs.getString(
            R.styleable.FormField_fieldInputHint
        );

        attrs.recycle();

        inflate(getContext(), R.layout.form_field, this);

        this.setFocusable(true);
        this.setFocusableInTouchMode(true);

        editText = (EditText)findViewById(R.id.edit_text);
        editText.setInputType(fieldInputType);
        editText.setHint(fieldInputHint);
        editText.setFocusableInTouchMode(true);

        validationIcon = (ValidationIcon)findViewById(R.id.validation_icon);
        validationIcon.setValid(true);

        ArrayList<View> touchables = new ArrayList<View>();
        touchables.add(this);
        touchables.add(editText);

        addTouchables(touchables);
    }

    public FormField(Context context, AttributeSet attrs, int defStyle)
    {
        super(context, attrs, defStyle);
    }

}

注冊布局.xml

<RelativeLayout android:id="@+id/container"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:custom="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:padding="20dp">

    <RelativeLayout android:id="@+id/account_details"
        android:layout_marginBottom="15dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <com.example.app.FormField
            android:id="@+id/name_field"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            custom:fieldInputHint="@string/name_field_hint" />

        <com.example.app.FormField
            android:id="@+id/email_field"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            custom:fieldInputHint="@string/email_field_hint" />

        <com.example.app.FormField
            android:id="@+id/password_field"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            custom:fieldInputHint="@string/password_field_hint" />

        <com.example.app.FormField
            android:id="@+id/re_password_field"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            custom:fieldInputHint="@string/re_password_field_hint" />

    </RelativeLayout>

</RelativeLayout>

最小 SDK 版本設置為 14,目標設置為 20。任何幫助將不勝感激!

編輯:

我今天在 FormField 上測試長按時收到了這條 logcat 消息。

W/TextView﹕ TextView does not support text selection. Action mode cancelled.

我仔細檢查了我的代碼,並且 EditText 元素只被轉換為 EditText。 如果 EditText 被轉換為一個 TextView 可以解釋我的原始問題,但現在我對為什么或如何將它轉換為 TextView 感到困惑。

看起來您正在擴展 LinearLayout 但從未在您的布局中使用它。 從您發布的內容來看,您根本沒有使用 FormField,我看到的唯一自定義視圖是 ValidationIcon 視圖。 因此,將觸摸事件掛接到 EditText 和 ValidationIcon 不會發生,因為您沒有在 layout.xml 中使用 FormField。

與其擴展 LinearLayout,不如使用預定義的方法和屬性來處理您要實現的行為。 例如顯示鍵盤、請求焦點、顯示提示:

<EditText
    android:id="@+id/edit_text"
    android:layout_weight="1"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    **android:inputType="text"**
    **android:hint="@styleable/FormField_fieldInputHint"**
    android:padding="10dp"
    android:textColor="#2d6169"
    android:textSize="18sp"
    android:background="@color/transparent" />

鍵盤應該在編輯文本獲得焦點時顯示,如果沒有,您可以通過請求焦點和處理 IME 管理器調用以編程方式執行此操作。 例如,從活動/片段:

//call this from onViewCreated to grab focus and begin the flow
editText.requestFocus();
//set focus listener to handle keyboard display
editText.setOnFocusChangeListener(new OnFocusChangeListener() {
     @Override
     public void onFocusChange(View v, boolean hasFocus) {
          if (!hasFocus) {
              InputMethodManager imm = (InputMethodManager)getSystemService(
  Context.INPUT_METHOD_SERVICE);
              imm.hideSoftInputFromWindow(myEditText.getWindowToken(), 0);
     } else {
              InputMethodManager imm = (InputMethodManager)getSystemService(
  Context.INPUT_METHOD_SERVICE);
              imm.showSoftInputFromWindow(myEditText.getWindowToken(), 0);
     }
});

確保沒有設置inputType:'none'或 '0X000000'

  • 在此處輸入圖片說明

將此代碼用於帶有標題的自定義 Edittext


custom_view.xml

        <?xml version="1.0" encoding="utf-8"?>
    <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="right"
        android:foregroundGravity="right"
        app:layout_anchorGravity="right">
    
        <LinearLayout
            android:orientation="vertical"
            android:id="@+id/search_closed_view"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_gravity="center|right"
            android:background="@color/white"
            android:foregroundGravity="center"
            android:gravity="right">
    
            <TextView
                android:id="@+id/txt_title"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center|left"
                android:layout_marginStart="16dp"
                android:layout_marginTop="14dp"
                android:fontFamily="@font/intel"
                android:foregroundGravity="center"
                android:text="textview"
                android:textColor="@color/title_color"
                android:textSize="14dp"
                android:textStyle="bold" />
    
            <androidx.constraintlayout.widget.ConstraintLayout
                android:id="@+id/lay"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="4dp"
                android:clickable="true"
                android:orientation="horizontal">
    
                <androidx.appcompat.widget.AppCompatEditText
                    android:id="@+id/edt_text"
                    android:layout_width="match_parent"
                    android:layout_height="50dp"
                    android:background="@drawable/edit_txtbg"
                    android:fontFamily="@font/intel"
                    android:gravity="center|start"
                    android:paddingStart="24dp"
                    android:textColor="@color/text_color"
                    android:textColorHint="@color/txt_hint"
                    android:textSize="@dimen/text_nev"
                    app:layout_constraintBottom_toBottomOf="parent"
                    app:layout_constraintEnd_toStartOf="@+id/img_add_patient"
                    app:layout_constraintStart_toStartOf="parent"
                    app:layout_constraintTop_toTopOf="parent" />
    
    
            </androidx.constraintlayout.widget.ConstraintLayout>
        </LinearLayout>
    
    
    </FrameLayout>


自定義編輯文本.kt

        package com.mdppractice.custom
    
    import android.content.Context
    import android.text.InputType
    import android.util.AttributeSet
    import android.view.LayoutInflater
    import android.widget.EditText
    import android.widget.FrameLayout
    import android.widget.TextView
    import com.mdppractice.R
    
    
    class CustomEditText(
        context: Context,
        attrs: AttributeSet,
    ) : FrameLayout(context, attrs) {
    
        private var txt_title: TextView
        private var edt_text: EditText
    
        init {
            LayoutInflater.from(context)
                .inflate(R.layout.custom_view, this, true)
            txt_title = findViewById(R.id.txt_title)
            edt_text = findViewById(R.id.edt_text)
    
    
            val a = context.obtainStyledAttributes(attrs, R.styleable.CustomEditText)
            txt_title.text = a.getString(R.styleable.CustomEditText_title)
            edt_text.hint = a.getString(R.styleable.CustomEditText_hint)
    
            when(a.getString(R.styleable.CustomEditText_inputType)) {
                "number" -> edt_text.inputType = InputType.TYPE_CLASS_PHONE
                "textCapSentences" -> edt_text.inputType = InputType.TYPE_TEXT_FLAG_CAP_SENTENCES
                "text" -> edt_text.inputType = InputType.TYPE_CLASS_TEXT
            }
    
            a.recycle()
    
        }
    
        fun setmInputType(type: Int) {
            edt_text.setRawInputType(InputType.TYPE_CLASS_TEXT)
            setmInputType(type)
        }
    
        fun setTitle(title: Int) {
            txt_title.setText(title)
        }
    
        fun set_Text(title: Int) {
            edt_text.setText(title)
        }
    
        fun getTitle(): String {
            return txt_title.text.toString()
        }
    
        fun get_Text(): String {
            return edt_text.text.toString()
        }
    
    
    }


主/../attr.xml

  <declare-styleable name="CustomEditText">
    <attr name="title" format="string"/>
    <attr name="onCenter" format="boolean"/>
    <attr name="hint" format="string"/>
    <attr name="maxLength" format="integer"/>
    <attr name="inputType" format="string"/>
</declare-styleable>


@drawable/edit_txtbg

            <?xml version="1.0" encoding="utf-8"?>
        <shape xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/listview_background_shape">
            <stroke android:width="1dp" android:color="@color/button_bg_border" />
            <padding android:left="0dp"
                android:top="0dp"
                android:right="0dp"
                android:bottom="0dp" />
            <corners android:radius="6dp"/>
            <solid android:color="@color/button_bg" />
        
        </shape>
  • 在布局中使用

     <com.mdppractice.custom.CustomEditText android:id="@+id/edt_custom" android:layout_width="match_parent" android:layout_height="wrap_content" app:title="Patient ID/Phone" android:autofillHints="@string/verified" android:foregroundGravity="center" android:hint="Please enter name" app:inputType="textCapSentences" android:textColor="@color/title_color" android:textSize="14dp" android:textStyle="bold" />


感謝您

暫無
暫無

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

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