实际上我正在制作一个布局,我必须将 CardView 放在ImageView上,它只覆盖了ImageView的一半部分,还添加了一个TextView(检查附加图像)。
注意:
xml代码:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/toolbar">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<ImageView
android:layout_width="match_parent"
android:layout_height="170dp"
android:layout_gravity="center"
android:background="@drawable/background"
android:id="@+id/picture">
</ImageView>
<TextView
android:text="TEXT VIEW"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="149dp"
android:layout_marginStart="149dp"
android:layout_marginTop="24dp"
android:id="@+id/textView" />
</FrameLayout>
</LinearLayout>
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="120dp"
app:cardBackgroundColor="@color/textViewBackground"
card_view:cardUseCompatPadding="true"
android:layout_centerHorizontal="true"
card_view:cardElevation="15sp"
android:layout_marginTop="153dp" />
答案 0 :(得分:1)
试试这个:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android" >
<ImageView
android:layout_width="match_parent"
android:layout_height="200dp"
android:background="@android:color/white"
android:layout_alignParentTop="true"/>
<TextView
android:layout_width="250dp"
android:layout_height="50dp"
android:layout_margin="20dp"
android:layout_centerHorizontal="true"
android:background="@color/colorAccent"/>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_marginTop="100dp"
card_view:cardCornerRadius="8dp"
android:layout_marginLeft="30dp"
android:layout_marginRight="30dp"
card_view:cardBackgroundColor="@color/colorPrimary">
</android.support.v7.widget.CardView>
</RelativeLayout>
如果您不想对参数进行硬编码,请参考此链接以在运行时获取设备宽度高度
{{3}}
然后您可以使用LayoutParams动态设置边距。
答案 1 :(得分:0)
您好,请检查我已编辑您的代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:card_view="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/toolbar">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<ImageView
android:layout_width="match_parent"
android:layout_height="170dp"
android:layout_gravity="center"
android:background="@color/colorPrimary"
android:id="@+id/picture">
</ImageView>
<TextView
android:text="TEXT VIEW"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="149dp"
android:layout_marginStart="149dp"
android:background="@color/colorBlueColor"
android:layout_marginTop="24dp"
android:id="@+id/textView" />
</FrameLayout>
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="120dp"
app:cardBackgroundColor="@color/textViewBackground"
card_view:cardUseCompatPadding="true"
android:layout_centerHorizontal="true"
android:layout_marginLeft="100dp"
card_view:cardElevation="15sp"
android:layout_marginTop="100dp" />
</RelativeLayout>
</LinearLayout>
答案 2 :(得分:0)
尝试这种方式它将起作用
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:arc="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center" >
<ImageView
android:id="@+id/imageView1s"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:scaleType="fitXY"
android:src="@drawable/done" />
<android.support.v7.widget.CardView
android:layout_width="130dp"
android:layout_height="130dp"
android:layout_marginTop="-65dp"
android:layout_below="@+id/imageView1s"
android:layout_centerHorizontal="true"
android:contentDescription="@string/app_name"
android:scaleType="center"
/>
</RelativeLayout>