如何创建此视图(布局)

时间:2017-02-15 10:49:22

标签: android xml android-layout relativelayout android-framelayout

实际上我正在制作一个布局,我必须将 CardView 放在ImageView上,它只覆盖了ImageView的一半部分,还添加了一个TextView(检查附加图像)。

注意:

  1. 我尝试使用FrameLayout以及相对布局...... 我实现了它,但我不认为它是正确的方式因为我硬编码主要是参数。
  2. enter image description here

    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" />
    

3 个答案:

答案 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>