私はさまざまな画面サイズ用にアプリケーションを設計していますが、私は小さな問題があります。タブ内のテキストのサイズを変更することはできません。ここに私がしたことがあります。タブ内のテキストサイズを変更する
まず自分のスタイルを作成しました。
<style name="MineCustomTabText" parent="TextAppearance.Design.Tab">
<item name="android:textSize">22sp</item>
</style>
次に、このスタイルを適切なXMLファイルに使用します。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context="manutd.football.app.interviews.InterviewsActivity">
<manutd.football.app.SlidingTabLayout
android:id="@+id/tabs"
app:tabTextAppearance="@style/MineCustomTabText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="2dp"
android:background="#656e99" />
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_below="@+id/tabs"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:layout_weight="1"
></android.support.v4.view.ViewPager>
</RelativeLayout>
ありがとう
はい。完了しました。ヘルプ - ) – Theo