Google 阅读器应用程序有一个很好的阴影,用于分隔两个窗格。我试图以非常有限的成功重新创建它。我正在使用下面的 xml,它给出了下面的屏幕截图。关于改进这一点的任何建议?
vertshadowgradient.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<gradient
android:startColor="#ffffff"
android:centerColor="#e6e6e6"
android:endColor="#c8c8c8"
android:angle="0" />
</shape>
主要的.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFFFFFFF"
android:orientation="horizontal" >
<View android:id="@+id/divider"
android:background="@drawable/vertshadowgradient"
android:layout_marginLeft="200dip"
android:layout_width="10dip"
android:layout_height="fill_parent"/>
</LinearLayout>