gpt4 book ai didi

java - TabLayout 的问题

转载 作者:行者123 更新时间:2023-12-01 17:11:55 26 4
gpt4 key购买 nike

当我将 Tablayout 拖到布局中时,它卡在左上角。我使用的是android studio 3.6.1。我已经添加了实现 'com.google.android.material:material:1.1.0'在构建 gradle 中。

Here is the screenshot of the TabLaout

最佳答案

如果我将 TabLayout 更改为

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

<com.google.android.material.tabs.TabLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintEnd_toEndOf="parent">
<com.google.android.material.tabs.TabItem
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Monday"/>
<com.google.android.material.tabs.TabItem
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Tuesday"/>
<com.google.android.material.tabs.TabItem
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Wednesday"/>

</com.google.android.material.tabs.TabLayout>

</androidx.constraintlayout.widget.ConstraintLayout>

工作正常。

关于java - TabLayout 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61422161/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com