android 为什么我的TabLayout与TabItems不呈现在desing选项卡

pdkcd3nj  于 2023-04-18  发布在  Android
关注(0)|答案(1)|浏览(142)

我有一个简单的布局,只有ConstraintLayout和TabLayout,有三个TabItem,但由于某些原因,它没有在设计选项卡中呈现。我也有数据层用于绑定,但我认为这不应该是一个障碍。澄清:当我删除所有的TabItems,我的布局渲染正确,我也试图重建项目,改变约束到线性和框架布局,但它没有帮助。

  • 编辑:* 添加一个TabItem会中断显示
  • Edit2:* 在设备上看起来一切正常
    xml文件:
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:tools="http://schemas.android.com/tools"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <data>

    </data>

    <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <com.google.android.material.tabs.TabLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintVertical_bias="0">

            <com.google.android.material.tabs.TabItem
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Monday" />

            <com.google.android.material.tabs.TabItem
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Tuesday" />

            <com.google.android.material.tabs.TabItem
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Wednesday" />

        </com.google.android.material.tabs.TabLayout>
    </androidx.constraintlayout.widget.ConstraintLayout>

</layout>
y4ekin9u

y4ekin9u1#

它工作正常,我只是粘贴你的代码在我的布局,它工作正常。检查您的材料库版本。可能是可以的错误。
我正在使用implementation 'com.google.android.material:material:1.10.0-alpha01'

相关问题