gpt4 book ai didi

android - RTL-Layout (Android Constraint-Layout) 中的指南被忽略

转载 作者:行者123 更新时间:2023-12-04 09:57:45 26 4
gpt4 key购买 nike

我听说 Constraint-Layout 中的指南和 RTL 存在一些错误。但是这些方法都没有帮助我。我的BottomNavigation 的两边都有指南,一切都在LTR 中工作,但在RTL 中,其中一个指南被忽略了。这是它的样子:

enter image description here

这是我的 xml 代码:

<com.example.sportsman.BotmNavViewGroup
android:id="@+id/NavbarLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginBottom="0dp"
android:background="@drawable/botm_navbar_shape_color"
android:elevation="25dp"
android:clickable="true"
android:gravity="bottom"
app:layout_constraintBottom_toBottomOf="parent">

<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_width="0dp"
android:layout_height="55dp"
android:layout_gravity="bottom"
android:background="@color/transparent"
android:paddingBottom="0dp"
android:theme="@style/Widget_NavigationItem_NoRipple"
app:elevation="0dp"
app:itemBackground="@drawable/drawer_item_background"
app:itemIconSize="26dp"
app:itemIconTint="@color/NavBarGrey"
app:itemTextColor="@color/NavBarGrey"
app:labelVisibilityMode="unlabeled"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintEnd_toStartOf="@+id/margin"
app:layout_constraintHorizontal_bias="0.416"
app:layout_constraintStart_toEndOf="@+id/margin2"
app:menu="@menu/bottom_nav_menu" />

<androidx.constraintlayout.widget.Guideline
android:id="@+id/margin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_percent="0.9" />

<androidx.constraintlayout.widget.Guideline
android:id="@+id/margin2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_percent="0.1" />

<ImageView
android:id="@+id/menu_button"
android:layout_width="41dp"
android:layout_height="41dp"
android:layout_marginTop="7dp"
android:background="@drawable/ic_plusbuttonbottomnav2"
android:backgroundTint="@color/accentColor"
android:padding="0dp"
android:src="@color/transparent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/bottom_navigation" />

</com.example.sportsman.BotmNavViewGroup>

代码中可以看到,中间的加号按钮是单独的,底部导航中间有一个透明的图标。

有人可以帮我吗?

最佳答案

您应该删除 app:layout_constraintEnd_toEndOf="parent"从底部导航 View

关于android - RTL-Layout (Android Constraint-Layout) 中的指南被忽略,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61887671/

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