2

“海拔”使滑动标签布局在棒棒糖设备上运行良好,但标签将在棒棒糖之前的设备上消失。我想知道有没有办法为棒棒糖之前的设备在 SlidingTabLayout 上添加高程。

这是我的 .XML 文件:

<RelativeLayout
    android:id="@+id/tab_frame_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_below="@+id/divider_line">

    <!-- Sliding Tab Layout -->
    <com.luulla.mobile.android.library.SlidingTabLayout
        android:id="@+id/tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:elevation="1.5dp"
        android:background="#FFFFFF"/>

    <!-- Add ViewPager -->
    <android.support.v4.view.ViewPager
        android:id="@+id/pager"
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:layout_below="@android:id/tabs">
    </android.support.v4.view.ViewPager>

</RelativeLayout>
4

1 回答 1

1

我通过here找到了解决方案,将“android=elevation=”替换为可绘制的xml文件。

于 2016-04-26T01:53:19.813 回答