滑动标签和工具栏之间的线

Line between Sliding Tabs and Toolbar

如何删除此行:

我尝试删除海拔:

<the.example.com.slidingtab.SlidingTabLayout
    android:id="@+id/tabs"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:elevation="2dp"
    android:background="@color/colorPrimary"/>

但我想要滑动标签下的阴影。

海拔定义为 Android 5.0 API 级别 21 LOLLIPOP。 我不知道你的目的是什么,但为了我的目的 我会针对 pre-21 设备并在其上绘制阴影的视图(如果没有其他帮助,<FrameLayout...> 可以将其子级绘制在另一个之上)。

例如,horiz_line.xml

<View xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="2dip"
    android:layout_width="match_parent"
    android:background="#000000"
    />

<LinearLayout ...> 用作

<include layout="@layout/horiz_line"/>

绘制一条简单的水平线。如果需要阴影,可以使用在透明背景上绘制深色阴影的 9 色块图像。