我要做的是在它上面设置一个渐变的渐开线和一个灰色的底部边框,我在我的应用程序中使用下面的自定义视图:
<DataGrid ItemsSource="{Binding Source={StaticResource itemsSource}}" AutoGenerateColumns="False" AlternatingRowBackground="#FF58C9FD" RowBackground="#00000000"/>
这是shape_list_item_gradient:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/list_item_container"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/list_item_image"
android:layout_width="match_parent"
android:layout_height="@dimen/SIZE_LIST_ITEM_LARGE"
android:scaleType="centerCrop"/>
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/shape_list_item_gradient" />
<com.rahil.widgets.CustomTextView
android:id="@+id/list_item_title"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:paddingTop="5dp"
android:paddingBottom="5dp"
android:gravity="bottom"
android:textColor="@color/COLOR_BLACK"/>
</RelativeLayout>
但上面的代码将边框应用于所有边框而不仅仅是底部边框。我将单独的形状xml添加到relativelayout但是它没有用,我假设带有渐变的视图可能会覆盖它?我很安静。谢谢你的帮助。
答案 0 :(得分:1)
android:bottom
属性实际上是关于layer-list
drawables here所指出的“像素的底部偏移量”。没有明确的方法来创建仅在一侧描边的矩形。
但是,您可以使用 Krylez 建议的相同技巧:https://stackoverflow.com/a/19239478/1538674
这样的事情:
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<gradient
android:startColor="#FFFFFFFF"
android:endColor="#00FFFFFF"
android:angle="90" />
</shape>
</item>
<item android:top="-3dp" android:right="-3dp" android:left="-3dp">
<shape>
<solid android:color="@android:color/transparent" />
<stroke android:width="2dp" android:color="@color/COLOR_GRAY" />
</shape>
</item>
</layer-list>