GithubHelp home page GithubHelp logo

Comments (5)

HITGIF avatar HITGIF commented on May 25, 2024 1

fixed in release 1.2.1

from textfieldboxes.

jrcacd avatar jrcacd commented on May 25, 2024

The bug is still alive!
image

from textfieldboxes.

HITGIF avatar HITGIF commented on May 25, 2024

what is its height setting? Or could you give me the xml for it, with its parent

from textfieldboxes.

jrcacd avatar jrcacd commented on May 25, 2024
<ObservableScrollView
    android:id = "@+id/scrollView"
    android:layout_width = "match_parent"
    android:layout_height = "match_parent"
    android:fillViewport = "true"
    android:layout_marginTop="?attr/actionBarSize"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/menu"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    android:layout_marginLeft="8dp"
    app:layout_constraintHorizontal_bias="1.0"
    app:layout_constraintVertical_bias="1.0"
    android:layout_marginRight="8dp">

	<android.support.constraint.ConstraintLayout
	xmlns:inner_app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:focusable="true"
	android:fitsSystemWindows="true"
    android:focusableInTouchMode="true"
    android:layout_marginStart="@dimen/activity_horizontal_margin"
    android:layout_marginEnd="@dimen/activity_horizontal_margin"
    android:maxWidth="@dimen/tamanho_maximo_horizontal"
    android:paddingTop="10dp"
    android:descendantFocusability="beforeDescendants"
    android:layout_gravity="center_horizontal"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintBottom_toBottomOf="parent">
	
	 <studio.carbonylgroup.textfieldboxes.TextFieldBoxes
            android:id="@+id/portugues"
            android:layout_height="wrap_content"
            android:layout_width="match_parent"
            inner_app:layout_constraintStart_toStartOf="parent"
            inner_app:layout_constraintTop_toTopOf="parent"
            inner_app:layout_constraintEnd_toEndOf="parent"
            inner_app:maxLines="10"
            inner_app:iconSignifier="@drawable/ic_import_contacts_black_24dp"
            inner_app:hint="@string/portugues"
            inner_app:labelText="@string/portugues"
            android:layout_marginTop="60dp"/>

from textfieldboxes.

HITGIF avatar HITGIF commented on May 25, 2024

Well, things worked fine in mine...

image

<?xml version="1.0" encoding="utf-8"?>
<ScrollView 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:id="@+id/scrollView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginLeft="8dp"
    android:layout_marginRight="8dp"
    android:fillViewport="true"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="1.0"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/menu"
    app:layout_constraintVertical_bias="1.0">

    <android.support.constraint.ConstraintLayout xmlns:inner_app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:layout_marginEnd="5dp"
        android:layout_marginStart="5dp"
        android:descendantFocusability="beforeDescendants"
        android:fitsSystemWindows="true"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:gravity="center"
        android:maxWidth="300dp"
        android:paddingTop="10dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">

        <studio.carbonylgroup.textfieldboxes.TextFieldBoxes
            android:id="@+id/portugues"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="70dp"
            inner_app:iconSignifier="@drawable/ic_location_on_black_24dp"
            inner_app:labelText="portugues"
            inner_app:layout_constraintEnd_toEndOf="parent"
            inner_app:layout_constraintStart_toStartOf="parent"
            inner_app:layout_constraintTop_toTopOf="parent"
            android:layout_marginLeft="8dp"
            inner_app:layout_constraintLeft_toLeftOf="parent"
            android:layout_marginRight="8dp"
            inner_app:layout_constraintRight_toRightOf="parent">

            <studio.carbonylgroup.textfieldboxes.ExtendedEditText
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:hint="portugues" />

        </studio.carbonylgroup.textfieldboxes.TextFieldBoxes>
    </android.support.constraint.ConstraintLayout>
</ScrollView>

See if the release 1.3.0 solves it :)

from textfieldboxes.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.