我对堆栈溢出进行了广泛的研究,但没有找到适合我的答案。我所拥有的是一个ImageView
,上面有一个elevation
(用于阴影效果),我想要一个TextView
。我将对GridLayout
中的许多元素重复此操作,因此bringToFront()
看起来不是一个好的选择。另外,我不希望TextView
带有阴影,因此translationZ
的{{1}}属性也不起作用。最后,我尝试对这两个元素使用xml
,但是我认为由于FrameLayout
的height属性,Imageview
仍然留在后面。以下是我的代码
TextView
这是我要实现的目标的图片
答案 0 :(得分:1)
注意::请不要使用负边距
尝试使用此功能 CoordinatorLayout
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_column="0"
android:layout_columnWeight="1"
android:layout_marginBottom="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:layout_row="0"
android:layout_rowWeight="2"
app:cardCornerRadius="8dp"
app:cardElevation="8dp">
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/topPanel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_marginTop="10dp"
android:gravity="center"
android:orientation="vertical">
<ImageView
android:id="@+id/bids_icon"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_centerHorizontal="true"
android:layout_marginBottom="6dp"
android:adjustViewBounds="true"
android:elevation="6dp"
android:scaleType="fitXY"
android:src="@drawable/kid" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Get Bids"
android:textAppearance="@style/TextAppearance.AppCompat"
android:textStyle="normal|bold" />
</LinearLayout>
<TextView
android:layout_width="20dp"
android:layout_height="wrap_content"
android:background="@color/colorPink"
android:text="10"
android:textStyle="normal|bold"
app:layout_anchor="@+id/bids_icon"
app:layout_anchorGravity="right" />
</android.support.design.widget.CoordinatorLayout>
</android.support.v7.widget.CardView>
输出
答案 1 :(得分:0)
尝试使用约束布局或仅在名片视图内使用相对布局,您不需要线性布局,相对布局应该可以轻松地处理您的工作。至于尝试这个的阴影
创建文件shadow_rect.xml
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item >
<shape
android:shape="rectangle">
<solid android:color="@android:color/darker_gray" />
<corners android:radius="0dp"/>
</shape>
</item>
<item android:right="1dp" android:bottom="2dp">
<shape
android:shape="rectangle">
<solid android:color="@android:color/white"/>
<corners android:radius="1dp"/>
</shape>
</item>
</layer-list>
然后将其应用于图像背景,您当然可以修改上述可绘制对象以获得所需的阴影类型。
这应该通过给阴影加阴影来处理高程的错觉,这样您就不再需要elevation
了,因为这是API 21+属性。
答案 2 :(得分:0)
尝试使用此代码
更改您的
name
和icon
和color
<android.support.v7.widget.CardView android:layout_width="match_parent"
xmlns`enter code here`:app="http://schemas.android.com/apk/res-auto"
android:layout_height="wrap_content"
android:padding="@dimen/dp_10"
app:cardCornerRadius="@dimen/dp_10"
android:layout_margin="@dimen/dp_10"
app:cardElevation="@dimen/dp_10"
xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="#fff"
android:layout_margin="@dimen/dp_1"
android:orientation="vertical"
android:gravity="center"
android:layout_height="wrap_content">
<RelativeLayout
android:gravity="center"
android:layout_marginTop="@dimen/dp_10"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:layout_width="@dimen/dp_65"
android:layout_marginTop="@dimen/dp_10"
android:gravity="center"
android:background="@drawable/circulerimageunselected"
android:elevation="@dimen/dp_2"
app:srcCompat="@drawable/ic_close"
android:padding="@dimen/dp_10"
android:layout_gravity="center"
android:layout_height="@dimen/dp_65" />
</RelativeLayout>
<TextView
android:textStyle="bold"
android:textColor="@color/white"
android:layout_marginLeft="@dimen/dp_40"
android:text="10"
android:textSize="@dimen/sp_15"
android:gravity="center"
android:background="@drawable/tile_bg"
android:layout_width="30dp"
android:layout_height="30dp" />
</RelativeLayout>
<TextView
android:textSize="@dimen/dp_20"
android:layout_marginTop="@dimen/dp_10"
android:layout_marginBottom="@dimen/dp_20"
android:text="Get Birds"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</android.support.v7.widget.CardView>