Как установить текст в edittext, который не должен редактироваться - PullRequest
0 голосов
/ 05 сентября 2018

Я использую EditText, отображающий TextView слева. Это не должно быть редактируемым.

Мой вопрос: как поставить TextView в EditText? Как это возможно?

На самом деле я хочу вот так:

TextView in EditeText

Ниже приведен код XML.

<EditText
        android:textAlignment="textEnd"
        android:text="user@gmail.com"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="*Mobile number"
        android:inputType="number"
        android:gravity="end" />

Ответы [ 3 ]

0 голосов
/ 05 сентября 2018

Сделайте ваш текст редактирования недоступным для редактирования, используя следующие свойства:

android:inputType="none"

если вы хотите сделать это программно

EditText editText= (EditText) findViewById(R.id.yourid);
editText.setEnabled(false);
editText.setKeyListener(null);
0 голосов
/ 05 сентября 2018

Я полностью согласен с @Nilesh Rathod, просто хочу предложить переместить этот LinearLayout в отдельный файл и повторно использовать его в нескольких местах, таких как Fragment

0 голосов
/ 05 сентября 2018

Мой вопрос, как поместить TextView в EditText?

Невозможно, потому что это не встроенное поведение EditText

Как это возможно?

Вы можете использовать TextView и EditText в LinearLayout с android:orientation="horizontal"

ОБРАЗЕЦ КОДА

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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="?attr/colorBackgroundFloating"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:gravity="center"
        android:orientation="horizontal">

        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:padding="5dp"
            android:text="Enter Name" />

        <EditText
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="right"
            android:text="123"
            android:padding="5dp" />

    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:gravity="center"
        android:orientation="horizontal">

        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:padding="5dp"
            android:text="Enter Name" />

        <EditText
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="right"
            android:text="123"
            android:padding="5dp" />

    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:gravity="center"
        android:orientation="horizontal">

        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:padding="5dp"
            android:text="Enter Name" />

        <EditText
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="right"
            android:text="123"
            android:padding="5dp" />

    </LinearLayout>

</LinearLayout>

OUTPUT

enter image description here

...