自定义卡未在设计中显示

时间:2018-04-12 10:20:57

标签: android android-layout

我已经尝试了一段时间来修复布局。我有这样的自定义卡片视图:this image 这张自定义卡片位于此片段中:

 <LinearLayout android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="@color/grey"
    xmlns:android="http://schemas.android.com/apk/res/android" >

 <android.support.v7.widget.RecyclerView
     android:layout_width="wrap_content"
     android:id="@+id/recycle"
     android:layout_height="match_parent"/>

</LinearLayout>

这本身就在viewpager中。问题是,当我运行应用程序时,我的自定义卡变为全宽,我甚至尝试使用RelativeLayout仍然不像我在设计布局中那样。

Custom_Card布局

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center|top"
    xmlns:card_view="http://schemas.android.com/tools"
    android:layout_marginTop="10dp"
    android:orientation="vertical">

    <android.support.v7.widget.CardView
        android:id="@+id/job_post"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        card_view:cardBackgroundColor="#fff"
        card_view:cardCornerRadius="3dp"
        card_view:cardElevation="4dp"
        card_view:cardUseCompatPadding="true">

        <RelativeLayout
            android:layout_width="360dp"
            android:layout_height="wrap_content"
            android:background="#fff">...

可以帮助我吗?先谢谢

2 个答案:

答案 0 :(得分:1)

在项目布局中使用CardView作为您的父布局,如下所示 -

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_margin="6dp"
    app:cardElevation="@dimen/dimen4"
    app:cardBackgroundColor="#fff"
    android:id="@+id/job_post"
    app:cardCornerRadius="3dp"
    android:layout_height="wrap_content">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_margin="2dp"
        android:layout_height="wrap_content"
        android:background="#fff">

        <TextView
            android:id="@+id/textView3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_centerHorizontal="true"
            android:text="TextView" />

    </RelativeLayout>

</android.support.v7.widget.CardView>

在您的活动或片段中提供width RecyclerView match_parent。 谢谢,我希望它为你工作

答案 1 :(得分:0)

您可以在线性布局中使用卡片视图,然后设置如下边距: -

<LinearLayout android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:orientation="vertical"
    android:background="@color/blue"
    xmlns:android="http://schemas.android.com/apk/res/android" >

        <android.support.v7.widget.CardView
        android:layout_width="match_parent"
        android:layout_margin="20dp"
        android:layout_height="match_parent">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center"
            android:text="Cardview Demo"/>

        </android.support.v7.widget.CardView>


</LinearLayout>

我希望它可以帮到你,你可以设置cardview的余量或你所需的宽度到cardview