こんにちは私は(スカイプのように)私のタブレイアウトの下に影を追加する必要があります。タブのレイアウトにボトムの影を追加するには
私の活動のxml:私はTablayoutにandroid:elevation="10dp"
を追加すると
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.Toolbar xmlns:local="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="@color/splashGreenTop"
local:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
local:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
<android.support.design.widget.TabLayout
android:id="@+id/tab_layout"
android:layout_below="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:elevation="0dp"
android:minHeight="?attr/actionBarSize" />
<FrameLayout
android:layout_width="match_parent"
android:layout_below="@+id/tab_layout"
android:id="@+id/tabContainer"
android:layout_height="match_parent" />
</RelativeLayout>
、影が底部と頂部を添加して..私はちょうど下を必要としています。
がどのように私はこれを行うことができます...画像を参照してください? ありがとうございます。
http://stackoverflow.com/質問/ 26572048/elevation-on-android-lollipop-not-working –