我想删除ActionBar选项卡之间的填充(空格)。
我正在使用Android支持库V7(Appcompat)在Android 2.2 API 8中使用Fragments和ActionBar作为minSDK和4.4 API 19作为maxSDK。
我尝试了以下内容,但它没有改变任何内容。
我的styles.xml
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="AppBaseTheme" parent="@style/Theme.AppCompat.Light">
</style>
<style name="AppTheme" parent="AppBaseTheme">
<item name="@style/Widget.AppCompat.ActionBar.TabView">@style/TabBarStyle</item>
</style>
<style name="TabBarStyle" parent="@style/Widget.AppCompat.ActionBar.TabView">
<item name="android:paddingLeft">2dp</item>
<item name="android:paddingRight">2dp</item>
</style>
</resources>
我来自AndroidManifest.xml
的活动
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:uiOptions="splitActionBarWhenNarrow" >
有人可以告诉我如何正确扩展和使用自定义主题。
答案 0 :(得分:4)
配置您的AndroidManifest.xml
以使用自定义主题:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
....
<application
...
android:theme="@style/AppTheme"
...
>
...
</application>
....
</manifest>
在res/values/
styles
.xml
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Use a custom Application theme extending an existing AppCompat theme. -->
<style name="AppBaseTheme" parent="@style/Theme.AppCompat.Light">
</style>
<!-- customize parts of your theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<!-- indicate that the actionBar uses a custom style and configure the link -->
<item name="actionBarTabStyle">@style/TabBarStyle</item>
</style>
<!-- configure your real custom style for the tab bar-->
<style name="TabBarStyle" parent="@style/Widget.AppCompat.ActionBar.TabView">
<item name="android:paddingLeft">5dp</item>
<item name="android:paddingRight">5dp</item>
<item name="android:minWidth">10dp</item>
<item name="android:maxWidth">15dp</item>
</style>
</resources>
以下内容应放在res/values/
styles-v11
.xml
和res/values/
styles-v14
{ {1}}
.xml