Android EditText вид плавающая Подсказка в Material Design

предоставляет ли API 21 метод для использования следующей функции:

http://www.google.com/design/spec/components/text-fields.html#text-fields-floating-labels

Я пытаюсь плавать подсказки EditText.

спасибо!

9 ответов


плавающая подсказка EditText:

добавить зависимость ниже в gradle:

compile 'com.android.support:design:22.2.0'

планировка:

<android.support.design.widget.TextInputLayout
    android:id="@+id/text_input_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

        <EditText
            android:id="@+id/editText"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="UserName"/>
    </android.support.design.widget.TextInputLayout>

да, по состоянию на 29 мая 2015 года эта функция теперь предоставляется в Библиотека Поддержки Дизайна Android

эта библиотека включает поддержку

  • плавающие метки
  • плавающая кнопка действия
  • закусочная
  • панель навигации
  • и

библиотека поддержки Android может быть импортирована в gradle в зависимостях:

    compile 'com.android.support:design:22.2.0'

Он должен быть включен в GradlePlease! И в качестве примера использовать его:

 <android.support.design.widget.TextInputLayout
    android:id="@+id/to_text_input_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <AutoCompleteTextView
        android:id="@+id/autoCompleteTextViewTo"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:hint="To"
        android:layout_marginTop="45dp"
        />
</android.support.design.widget.TextInputLayout>

кстати, редактор может не понимать, что AutoCompleteTextView разрешен в TextInputLayout.


Android не предоставил собственный метод. Ни AppCompat.

попробуйте эту библиотеку:https://github.com/rengwuxian/MaterialEditText

Это может быть то, что вы хотите.


импортируйте библиотеки поддержки в сборке вашего проекта.файл gradle, добавьте следующие строки в зависимости проекта:

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])

    compile 'com.android.support:design:22.2.0'
    compile 'com.android.support:appcompat-v7:22.2.0'
}

использовать следующий TextInputLayout в макете интерфейса:

<android.support.design.widget.TextInputLayout
    android:id="@+id/usernameWrapper"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <EditText
        android:id="@+id/username"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:inputType="textEmailAddress"
        android:hint="Username"/>

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

чем, вызовите setHint на TextInputLayout сразу после вызова setContentView, потому что, чтобы оживить плавающую метку, вам просто нужно установить подсказку, используя метод setHint.

final TextInputLayout usernameWrapper = (TextInputLayout) findViewById(R.id.usernameWrapper);
usernameWrapper.setHint("Username");

предложение@andruboy https://gist.github.com/chrisbanes/11247418 вероятно, ваш лучший выбор.

https://github.com/thebnich/FloatingHintEditText Вид работ с appcompat-v7 v21.0.0, но с v21.0.0 не поддерживает цвета акцентов с подклассами EditText подчеркивание элемента FloatingHintEditText будет умолчанию сплошной черный или белый. Также прокладка не оптимизирована для стиля материала EditText, поэтому вам может потребоваться настроить он.


нет, это не так. Я ожидал бы этого в будущем выпуске api, но пока мы застряли с EditText. Другой вариант-эта библиотека:
https://github.com/marvinlabs/android-floatinglabel-widgets


попробуй так

enter image description here

  dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:design:23.0.1'

}

для получения дополнительной информации нажмите кнопку здесь


для более простого способа использования InputTextLayout я создал эту библиотеку, которая сокращает ваш XML-код менее чем наполовину, а также предоставляет вам возможность установить сообщение об ошибке, а также подсказку и простой способ сделать ваши проверки. https://github.com/TeleClinic/SmartEditText

просто добавить

compile 'com.github.TeleClinic:SmartEditText:0.1.0'

затем вы можете сделать что-то вроде этого:

<com.teleclinic.kabdo.smartmaterialedittext.CustomViews.SmartEditText
    android:id="@+id/emailSmartEditText"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:setLabel="Email"
    app:setMandatoryErrorMsg="Mandatory field"
    app:setRegexErrorMsg="Wrong email format"
    app:setRegexType="EMAIL_VALIDATION" />

<com.teleclinic.kabdo.smartmaterialedittext.CustomViews.SmartEditText
    android:id="@+id/passwordSmartEditText"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:setLabel="Password"
    app:setMandatoryErrorMsg="Mandatory field"
    app:setPasswordField="true"
    app:setRegexErrorMsg="Weak password"
    app:setRegexType="MEDIUM_PASSWORD_VALIDATION" />

<com.teleclinic.kabdo.smartmaterialedittext.CustomViews.SmartEditText
    android:id="@+id/ageSmartEditText"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:setLabel="Age"
    app:setMandatory="false"
    app:setRegexErrorMsg="Is that really your age :D?"
    app:setRegexString=".*\d.*" />