我正在使用谷歌现在的界面制作应用程序,内容卡片。
首先请看一下这张图片:http://imgur.com/oLSSvIn
我设法创建了卡并将内容添加到其中,但我的imageview正在卡边框(阴影线)的顶部,如蓝色箭头所示。
请问如何在imageview下制作卡片灰色边框星?我尝试在图像视图和底部/顶部填充处添加边距,但没有任何成功。
下载代码为bg:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle"
android:dither="true">
<corners android:radius="0dp"/>
<solid android:color="#bdbdbd" />
</shape>
</item>
<item android:bottom="2dp">
<shape android:shape="rectangle"
android:dither="true">
<corners android:radius="0dp" />
<solid android:color="@android:color/white" />
</shape>
</item>
</layer-list>
以及内容的活动:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
android:layout_marginLeft="6dp"
android:layout_marginRight="6dp"
android:layout_marginTop="4dp"
android:background="@drawable/friend_card_profile_bg" >
<ImageView
android:id="@+id/friendPic"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="1dp"
android:adjustViewBounds="true"
android:scaleType="fitXY"
android:src="@drawable/friend_testpic" />
<TextView
android:id="@+id/friendUsername"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="2dp"
android:layout_marginLeft="6dp"
android:layout_marginTop="4dp"
android:layout_toRightOf="@+id/friendPic"
android:fontFamily="sans-serif-condensed"
android:text="@string/profile_username"
android:textColor="#7f7f7f"
android:textSize="19dp" />
<TextView
android:id="@+id/friendLinksCounter"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/friendUsername"
android:layout_marginLeft="6dp"
android:layout_toRightOf="@+id/friendPic"
android:fontFamily="sans-serif"
android:text="@string/profile_links_counter"
android:textColor="#acacac"
android:textSize="14dp" />
<TextView
android:id="@+id/friendFriendsCounter"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/friendLinksCounter"
android:layout_marginLeft="6dp"
android:layout_toRightOf="@+id/friendPic"
android:fontFamily="sans-serif"
android:text="@string/profile_friends_counter"
android:textColor="#acacac"
android:textSize="14dp" />
</RelativeLayout>
谢谢你
答案 0 :(得分:1)
尝试在相对布局的底部使用2dp填充,这应该调整内容,使其全部高于您的阴影。