문제

I have an app that uses fragments and tabs. I have moved the tabs to the bottom of screen, but the tabwidget's shadow still at the top of the screen(. How to show it above the tabwidget. My main xml is same as in the following question, but slightly modified as suggested in its answer..

How to show the Tab bar in bottom, -Tab with Fragment

도움이 되었습니까?

해결책 2

I solved this using

android:foreground="@drawable/drop_shadow"
android:foregroundGravity="bottom|fill_horizontal" 

on the FrameLayout tag.

다른 팁

Try to setup this style to fragments or activities in the tabs:

    <style
        name="NoWindowContentOverlay">
    <item
        name="android:windowContentOverlay">@null</item>
    </style>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top