EditText 不会根据 viewpager 中的内容调整大小

EditText not resize based on content in a viewpager

我有一个简单的结构。带有 BottomNavigationView 和 NavController 的 MainActivity。在这个导航控制器中,我有 4 个项目。其中之一是 FavoritesFragment。此片段布局简单:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        tools:context=".view.main.favorites.FavoritesFragment">

    <com.google.android.material.tabs.TabLayout
            android:id="@+id/tlTest"
            android:layout_width="match_parent"
            android:layout_height="40dp"
            app:layout_constraintTop_toTopOf="parent" />

    <androidx.viewpager.widget.ViewPager
            android:id="@+id/vpTest"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            app:layout_constraintTop_toBottomOf="@id/tlTest"
            app:layout_constraintBottom_toBottomOf="parent"/>

</androidx.constraintlayout.widget.ConstraintLayout>

使用以下代码:

片段适配器

package com.lust.ahri.view.main.favorites

import androidx.fragment.app.Fragment
import androidx.fragment.app.FragmentManager
import androidx.fragment.app.FragmentPagerAdapter
import com.lust.ahri.view.base.BaseFragment

class TestAdapter(fragmentManager: FragmentManager) : FragmentPagerAdapter(fragmentManager, BEHAVIOR_RESUME_ONLY_CURRENT_FRAGMENT) {

    private val fragments: MutableList<BaseFragment> = mutableListOf()
    private val titles: MutableList<String> = mutableListOf()

    override fun getItem(position: Int): Fragment {
        return fragments[position]
    }

    override fun getCount(): Int {
        return fragments.count()
    }

    override fun getPageTitle(position: Int): CharSequence? {
        return titles[position]
    }

    fun addFragment(fragment: BaseFragment, title: String) {
        fragments.add(fragment)
        titles.add(title)
    }
}

和 FavoritesFragment

class FavoritesFragment : BaseFragment() {


    private lateinit var adapter: TestAdapter

    override fun onCreateView(
        inflater: LayoutInflater, container: ViewGroup?,
        savedInstanceState: Bundle?
    ): View? {
        // Inflate the layout for this fragment
        return inflater.inflate(R.layout.fragment_favorites, container, false)
    }

    override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
        super.onViewCreated(view, savedInstanceState)
        adapter = TestAdapter(childFragmentManager)
        adapter.addFragment(TestFragment(), "Test1")
        adapter.addFragment(TestFragment(), "Test2")
        vpTest.adapter = adapter
        tlTest.setupWithViewPager(vpTest)
    }
}

在我的 TestFragment 中我有布局的问题:

<?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"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center|top">

    <androidx.appcompat.widget.AppCompatEditText
            android:id="@+id/test1"
            android:layout_width="wrap_content"
            android:hint="10"
            android:maxLines="1"
            android:maxLength="10"
            android:layout_height="50dp" />

    <EditText
            android:layout_width="wrap_content"
            android:hint="10"
            android:maxLines="1"
            android:maxLength="10"
            android:layout_height="50dp"
            android:layout_marginTop="70dp" />

</LinearLayout>

我的意思是我的编辑文本将像往常一样根据字符数调整 wrap_content 大小,实际上,字段不会改变它们的大小,只是被裁剪了。

我试图将我的布局更改为约束、相对或其他,但实际上我找不到任何解决方案。

我需要一个答案,如何让编辑文本在 viewpager 中像默认布局行为一样改变它们的宽度,以及为什么会发生这种情况。

我认为问题出在ViewPager 0dp高度上。试试这个

<RelativeLayout 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.support.design.widget.AppBarLayout
        android:id="@+id/app_bar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fitsSystemWindows="true"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">


        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            app:layout_collapseMode="pin"
            app:layout_scrollFlags="scroll|enterAlways"
            app:popupTheme="@style/Widget.AppCompat.PopupMenu.Overflow" />

        <android.support.design.widget.TabLayout
            android:id="@+id/mtab_ID"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:tabIndicatorColor="@color/colorAccent1"
            app:tabIndicatorHeight="3dp"
            app:tabTextColor="@color/colorWhite"
            />

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

    <android.support.v4.view.ViewPager
        android:id="@+id/mViewpager_ID"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@id/app_bar"
         />


</RelativeLayout>