はじめまして。大井と申します。
ActionBarのTabBarのテキストサイズを変えようとしたのですがうまくできません。
タブバーのテキストサイズ変更の方法を教えて下さいよろしくお願いいたします。
自分で実行したプログラムは
android studioでNew Projectから下記の設定(その他の設定は初期値)でプロジェクトを新規作成。
minimumSDK 2.1
Supports Mode fragments,Action Barにチェック
BrankActivity
ActionBarTabs(with ViewPager)
下記のファイルは新規作成時に自動生成されたもので編集していません
------------------AndroidManifest.xml------------------------------------------------
<?xml version="1.0" encoding="utf-8"?>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.app.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
----------------------------------------------------------------------------------
下記のファイルのみ編集しました。
------------------styles.xml------------------------------------------------
<resources>
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="actionBarTabTextStyle">@style/MyActionBar</item>
<item name="android:textSize">30dip</item><!--この行でメニューボタンの文字を大きくできることは確認しました-->
</style>
<style name="MyActionBar" parent="@style/Widget.AppCompat.ActionBar.TabBar">
<item name="android:textSize">30dip</item><!--この行でActionBarのTabBarのテキストサイズを変えようとしたのですが失敗しました。-->
</style>
</resources>
------------------------------------------------------------------------------------