0

我设置了 ViewPager 的高度 wrap_content 但它不起作用。我尝试了其他类似问题的答案,但没有解决我的问题。我的 activity_main 代码是这样的:

<?xml version="1.0" encoding="utf-8"?>
<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:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#C49A1544"
    tools:context=".MainActivity">

    <include layout="@layout/toolbar"
        android:id="@+id/main_toolbar"/>

    <androidx.viewpager.widget.ViewPager
        android:id="@+id/viewpager"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="@dimen/standard_margin_x2"
        android:layout_below="@id/main_toolbar"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true" />

</RelativeLayout>

我有 3 个片段布局。真的对不起我的英语低,我是Android应用程序开发的初学者,请帮助我。

4

1 回答 1

0

我自己找到了解决方案。如果我们使用 UltraViewPager 库而不是默认的,问题就解决了,但是这个库有 bug。无论如何,感谢您尝试帮助我提出您的意见。

于 2021-10-18T19:10:48.327 回答