我所做的是我把一個影子在我的菜單視圖(即behindView)的右邊有一個保證金在你的上述觀點的權利:
<!-- Show shadow on the right of the menu -->
<RelativeLayout
android:id="@+id/menuShadow"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:focusable="false"
android:clickable="false"
android:background="#00000000"
android:layout_marginRight="40dp">
<ImageView
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_alignParentBottom="true"
android:layout_width="6dp"
android:layout_height="fill_parent"
android:background="@layout/border_menu_progressive_shadow"/>
</RelativeLayout>
隨着我的身影佈局:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape>
<gradient
android:startColor="#00101010"
android:endColor="#252525"
android:angle="0" />
</shape>
</item>
</selector>
這是我自己試過的東西。雖然它確實提供了我正在尋找菜單拉出後的效果,而不是在拉取菜單時。 – 2012-07-11 14:54:46
是的,如果你知道速度,距離和時間,你可以使用翻譯動畫來跟蹤上面的視圖的運動。 – 2012-07-11 14:57:48
我將在後面移動陰影。如果我可能成功,我會保持更新。 – 2012-07-23 15:10:48