降低Android中Tab小部件的高度,可以通过以下方法:
在布局文件中找到TabLayout,并设置其高度属性。例如:
<com.google.android.material.tabs.TabLayout
android:id="@+id/tab_layout"
android:layout_width="match_parent"
android:layout_height="48dp"
app:tabMode="fixed" />
在Activity或Fragment中找到TabLayout,并设置其高度属性。例如:
TabLayout tabLayout = findViewById(R.id.tab_layout);
ViewGroup.LayoutParams layoutParams = tabLayout.getLayoutParams();
layoutParams.height = 48;
tabLayout.setLayoutParams(layoutParams);
在res/values
目录下的styles.xml
文件中,创建一个自定义样式,并设置tabIndicatorHeight
属性。例如:
<item name="tabIndicatorHeight">2dp</item>
</style>
然后在布局文件中应用这个样式:
<com.google.android.material.tabs.TabLayout
android:id="@+id/tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="@style/CustomTabLayout"
app:tabMode="fixed" />
app:tabIndicatorHeight
属性:在布局文件中直接设置app:tabIndicatorHeight
属性,例如:
<com.google.android.material.tabs.TabLayout
android:id="@+id/tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabIndicatorHeight="2dp"
app:tabMode="fixed" />
通过以上方法,您可以降低Android中Tab小部件的高度。
领取专属 10元无门槛券
手把手带您无忧上云