私のスタイルXMLファイルに変更を加えて、私のTabLayoutにカスタムスタイルを定義しました。なぜTabLayoutのスタイルにエラーがありますか?
マイコード:
<style name="MyCustomTabLayout" parent="Widget.Design.TabLayout">
<item name="tabTextAppearance">@style/MyCustomTabTextAppearance</item>
</style>
<style name="MyCustomTabTextAppearance">
<item name="android:textSize">14sp</item>
<item name="textAllCaps">true</item>
</style>
また、私は、私は私の研究をしたとき、それは私がそうparent
が来たところからそこに
<style name="MyCustomTabTextAppearance" parent="TextAppearance.Design.Tab">
を使用する必要があることを示したことをお願いしたいと思います。私はドキュメントを通過しましたが、このTextAppearance.Design.Tab
はどこに見つからなかったのですか?だから、なぜこのアプリがこの親なしで動作しないのですか、どこから親の正確な目的を知ることができますか?
public static void changeTabsAttributes(TabLayout tabLayout, int textSize) {
ViewGroup vg = (ViewGroup) tabLayout.getChildAt(0);
int tabsCount = vg.getChildCount();
for (int j = 0; j < tabsCount; j++) {
ViewGroup vgTab = (ViewGroup) vg.getChildAt(j);
int tabChildsCount = vgTab.getChildCount();
for (int i = 0; i < tabChildsCount; i++) {
View tabViewChild = vgTab.getChildAt(i);
if (tabViewChild instanceof TextView) {
//set the background somewhere here?
((TextView) tabViewChild).setTextSize(textSize);
}
}
}
}
は、あなたが得るものを教えて、その後、これを試してみてください:
タブのテキストを変更しようとしていますか? – Eenvincible
チェック:https://guides.codepath.com/android/google-play-style-tabs-using-tablayout – piotrek1543
@Engvincibleしかし、質問はより広範です。 https://developer.android.com/reference/android/support/design/widget/TabLayout.html#attr_android.support.design:tabTextAppearanceのドキュメントには、親として表示されるものも何も表示されません。だから、その親のテキストはどこから来たのですか? – arqam