Изложенное редактирование текста из материала дизайна - PullRequest
0 голосов
/ 19 сентября 2018

Как реализовать поля Outlined text, представленные на странице «Дизайн материала» Activated Edit Text

Ссылка

Ответы [ 4 ]

0 голосов
/ 09 августа 2019

Если вы используете appcompact библиотеку, вы можете использовать эту android.support.design.widget.TextInputLayout

, если вы используете ANDROIDX build, поэтому я прихожу к одному выводу, у кого последний код в соответствии с android jetpack.

Для этого вам нужно иметь эти зависимости в своем приложении gradle

dependencies {
    implementation 'com.google.android.material:material:1.0.0'
}

, тогда этокак вы можете добавить в свой XML для элемента пользовательского интерфейса

<com.google.android.material.textfield.TextInputLayout
    android:id="@+id/messageTextInputLayout"
    style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="10dp">

        <com.google.android.material.textfield.TextInputEditText
            android:id="@+id/passwordTextInputEditText"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="Enter Text here" />

</com.google.android.material.textfield.TextInputLayout>
0 голосов
/ 19 сентября 2018

Вам необходимо добавить эту зависимость на свой «уровень модуля» build.gradle com.google.android.material, чтобы использовать последние material UI components.

Используйте этот стиль в своих com.google.android.material.textfield.TextInputLayout затем,

style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"

Оформить заказ из здесь


Если выЕсли вы используете библиотеку com.android.support:design, вам следует изменить стиль приложения на Theme.MaterialComponents...Bridge (то есть изменить стиль с Theme.AppCompat.Light на Theme.MaterialComponents.Light.Bridge)

во-первых,

Далее вы должны использовать этот стиль в вашем android.support.design.widget.TextInputLayout:

style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
0 голосов
/ 22 сентября 2018

ОБНОВЛЕНИЕ

Также отлично работает с

implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'

Использование implementation 'com.android.support:design:28.0.0-alpha1' У меня ошибка ниже

Не удалось разрешить символ'@style/Widget.MaterialComponents.TextInputLayout.OutlineBox'

enter image description here

Решение

Внесите следующие изменения в Build.Gradle

Использование compileSdkVersion 28

Использование targetSdkVersion 28

Использование Ниже зависимости

implementation 'com.android.support:appcompat-v7:28.0.0-alpha3'
implementation 'com.android.support:design:28.0.0-alpha3'

Пример кода

<?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:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="com.example.dangarmahesh.demoapp.MainActivity">

    <ImageView
        android:layout_width="250dp"
        android:layout_gravity="center"
        android:src="@mipmap/ic_launcher"
        android:layout_height="250dp" />

    <android.support.design.widget.TextInputLayout
        android:id="@+id/userIDTextInputLayout"
        style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
        android:layout_width="match_parent"

        android:layout_margin="10dp"
        android:layout_height="wrap_content">

        <android.support.design.widget.TextInputEditText
            android:id="@+id/userIDTextInputEditText"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="User ID" />
    </android.support.design.widget.TextInputLayout>

    <android.support.design.widget.TextInputLayout
        android:id="@+id/passwordTextInputLayout"
        android:layout_margin="10dp"
        style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"

        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <android.support.design.widget.TextInputEditText
            android:id="@+id/passwordTextInputEditText"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="Password" />

    </android.support.design.widget.TextInputLayout>


    <Button
        android:layout_width="match_parent"
        android:layout_margin="10dp"
        android:text="LOGIN"
        android:textStyle="bold"
        android:background="@color/colorPrimary"
        android:textColor="@android:color/white"
        android:layout_height="wrap_content" />
</LinearLayout>

OUTOUT

enter image description here

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

Чтение Outline Box.

Поля для структуры текста имеют заштрихованную границу и менее выделены.Чтобы использовать текстовое поле структуры, примените следующий стиль к TextInputLayout:

 style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"

зависимости

implementation 'com.android.support:design:28.0.0-alpha1' 

XML

   <android.support.design.widget.TextInputLayout
   android:id="@+id/name_text_input"
   style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   >

   <android.support.design.widget.TextInputEditText
       android:id="@+id/name_edit_text"
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:hint="@string/label_name" />
</android.support.design.widget.TextInputLayout>

DEMO

...