Passen Sie die Höhe zwischen Tablayout-Titeltext und Symbol an

Ich habe die Möglichkeit, den Abstand zwischen dem Titeltext und dem Symbol von @ zu verringerTabLayout wie in Google Plus, wo die Symbole und der Texttitel mindestens keinen Abstand haben. Ich habe gesucht, konnte es aber bisher nicht finden.

EDITED

So stelle ich Symbol und Titel ein:

 tabLayout.getTabAt(3).setIcon(R.drawable.ic_more_horiz_white_24dp);
 tabLayout.getTabAt(3).setText("More");

Und das ist meinTabLayout:

<android.support.design.widget.TabLayout
        android:id="@+id/tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:tabIndicatorColor="@color/white"
        app:tabIndicatorHeight="2dp"
        app:tabTextAppearance="?android:attr/textAppearanceSmall"
        />

Antworten auf die Frage(2)

Ihre Antwort auf die Frage