Android TabLayout中的Tab中的文字怎么向左对齐
时间: 2024-02-05 15:11:11 浏览: 389
Android TabLayout中的Tab中的文字默认是居中对齐的,如果需要让文字向左对齐,可以通过设置TabLayout的自定义布局来实现。具体步骤如下:
1. 在TabLayout中添加Tab时,使用自定义布局:
```
TabLayout.Tab tab = mTabLayout.newTab();
tab.setCustomView(R.layout.tab_item);
mTabLayout.addTab(tab);
```
2. 在自定义布局tab_item.xml中,使用TextView来显示Tab的文字,并设置gravity为left:
```
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="@style/TextAppearance.Design.Tab"
android:gravity="left" />
```
通过以上步骤,即可实现Tab中的文字向左对齐。
阅读全文