adjustPan切断了EditText的底部

时间:2017-12-07 19:16:41

标签: android

adjustPan似乎实际上是在EditText的基线而不是视图的实际边缘上进行平移。

Bottom edge covered

我一直在寻找解决方法,但我还没找到任何东西。

活动代码(kotlin):

override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    setContentView(R.layout.activity_main)
    window.setSoftInputMode(SOFT_INPUT_ADJUST_PAN)
}

布局xml:

<android.support.constraint.ConstraintLayout 
    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"
    tools:context="com.foo.testbed.MainActivity">

<EditText
    android:id="@+id/myEditText"
    android:layout_width="0dp"
    android:layout_height="48dp"
    android:layout_marginBottom="8dp"
    android:layout_marginEnd="15dp"
    android:layout_marginStart="8dp"
    android:background="@drawable/rounded_edit_text"
    android:hint="Message"
    android:paddingStart="8dp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toStartOf="@id/myButton"
    app:layout_constraintStart_toStartOf="parent" />

<Button
    android:id="@+id/myButton"
    android:layout_width="wrap_content"
    android:layout_height="48dp"
    android:layout_marginBottom="8dp"
    android:layout_marginEnd="8dp"
    android:text="Send"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintTop_toTopOf="@id/myEditText" />

我尝试过以下问题的解决方案无济于事:

1 个答案:

答案 0 :(得分:2)

解决方案是设置top&amp; bot paddings

我的editText示例:

<AutoCompleteTextView
                android:id="@+id/editText_new_password"
                android:layout_width="match_parent"
                android:layout_height="@dimen/btn_editbox_height"
                android:background="@drawable/edit_text_style"
                android:gravity="center_vertical"
                android:paddingEnd="@dimen/login_edit_box_pass_padding_right"
                android:paddingTop="10dp"
                android:paddingBottom="10dp"
                android:paddingStart="@dimen/edit_box_padding"
                android:textSize="14sp" />

enter image description here

填充12:

enter image description here

和裸露的衬垫:

enter image description here