2016-04-30 79 views
1

我試圖做幾個月,最後我無法找到。 Elevation僅適用於API 21+,有時其他方式有效,有時不適用。我正在做音樂播放器,我需要音樂控制器和音樂封面之間的影子。如何添加陰影?海拔不在這裏工作了,你可以看到佈局之間添加陰影

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior"> 

    <ImageView 
     android:id="@+id/now.playing.cover" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:background="#ffffff" 
     android:scaleType="centerInside"/> 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:background="@color/colorPrimaryDark" 
     android:gravity="center_horizontal" 
     android:orientation="vertical" 
     android:padding="8dp"> 

     <TextView 
      android:id="@+id/now.title" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:maxLines="1" 
      android:textColor="@color/colorSecondaryText" /> 

     <TextView 
      android:id="@+id/now.artist" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:maxLines="1" 
      android:textColor="@color/colorSecondaryText" /> 

     <TextView 
      android:id="@+id/now.album" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:maxLines="1" 
      android:textColor="@color/colorSecondaryText" /> 

     <android.support.v7.widget.AppCompatSeekBar 
      android:id="@+id/now.seek" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" /> 

     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:gravity="center" 
      android:orientation="horizontal" 
      android:paddingLeft="32dp" 
      android:layout_marginTop="8dp" 
      android:paddingRight="32dp"> 

      <ImageView 
       android:id="@+id/prev" 
       android:layout_width="36dp" 
       android:layout_height="36dp" 
       android:layout_marginRight="56dp" 
       android:padding="2dp" 
       android:src="@drawable/prev" /> 

      <ImageView 
       android:id="@+id/pp" 
       android:layout_width="36dp" 
       android:layout_height="36dp" 
       android:layout_marginRight="56dp" 
       android:padding="2dp" 
       android:src="@drawable/play" /> 

      <ImageView 
       android:id="@+id/next" 
       android:layout_width="36dp" 
       android:layout_height="36dp" 
       android:padding="2dp" 
       android:src="@drawable/next" /> 
     </LinearLayout> 
    </LinearLayout> 
</LinearLayout> 

enter image description here

回答

2

您可以添加一個視圖,其中間看起來像影子.. 下面是我所使用的相同的例子,它幾乎工程對所有API ..也許它可以幫助你..

陰影查看:

<View 
     android:id="@+id/toolbar_shadow" 
     android:layout_width="match_parent" 
     android:layout_height="15dp" 
     android:layout_below="@+id/toolbar" 
     android:background="@drawable/toolbar_shadow" /> 

而繪製的文件:

<?xml version="1.0" encoding="utf-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android" 
    android:shape="rectangle" > 

    <gradient 
     android:angle="90" 
     android:endColor="#88444444" 
     android:startColor="#00000000" /> 
</shape> 

It will look like this

+0

感謝,這是一個好辦法 –