谷歌阅读器应用程序有一个很好的阴影用于分隔两个窗格。我试图以非常有限的成功重现这一点。我使用下面的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>
main.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>
答案 0 :(得分:0)
使用hierarchyviewer
了解如何在Google阅读器http://developer.android.com/guide/developing/debugging/debugging-ui.html