我正在创建一个新的选项卡式Android应用程序。创建项目后,我可以看到Action栏的高度比正常的操作栏大,请参阅附图
这是主要的activity.xml文件
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#EEEEEE">
<android.support.v4.view.ViewPager android:id="@+id/pager"
android:layout_width="match_parent" android:layout_height="match_parent"
android:layout_above="@+id/material_tabs"
tools:context=".MainActivity" />
<io.karim.MaterialTabs
android:id="@+id/material_tabs"
android:layout_width="match_parent"
android:layout_height="48dp"
android:background="?attr/colorPrimary"
app:mtSameWeightTabs="true"
app:mtPaddingMiddle="false"
android:layout_alignParentBottom="true"
/>
</RelativeLayout>
这是片段占位符文件
<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"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity$PlaceholderFragment">
<TextView android:id="@+id/section_label" android:layout_width="wrap_content"
android:text="Hello"
android:layout_height="wrap_content" />
</RelativeLayout>
为什么我在动作栏上获得这么高的高度?我该如何解决?
由于