我想将TabLayout
与Tabs
一起使用,它们在屏幕上占用的空间(宽度)不相等。如果我加2 Tabs
,则它们每个都占用屏幕宽度的一半。我要做的是将它们对齐到父级的右边,它们的宽度将与其图标完全相同。
<com.google.android.material.tabs.TabLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/menu_bar"
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_marginLeft="15.2dp"
android:layout_marginRight="15.2dp"
android:layout_marginTop="19dp"
android:layout_marginBottom="16.9dp"
app:tabIndicatorHeight="0dp"
app:tabMaxWidth="0dp"
app:tabGravity="fill"
app:tabMode="fixed"
android:layout_alignParentEnd="true"
app:tabUnboundedRipple="true" >
<com.google.android.material.tabs.TabItem
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout="@layout/node_top_menu_item" />
<com.google.android.material.tabs.TabItem
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout="@layout/node_top_menu_item" />
</com.google.android.material.tabs.TabLayout>