如何将cardview位置更改为tablayout的底部?

时间:2017-11-04 20:44:08

标签: android android-layout android-cardview

我尝试创建一个由片段中的五个项目组成的cardview。但是,cardview位置始终位于布局的顶部。我尝试使用margin和align,但它没有用。 如何更改cardview的位置?

这是我的card_item.xml:

enums

这是我的activity_pendaftar.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:android.support.v7.cardview="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="85dp"
android:orientation="vertical"
android:id="@+id/my_relative_layout"
>


<android.support.v7.widget.CardView
    android:id="@+id/card_view"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="150dp"
    android:layout_marginRight="10dp"
    android:layout_marginLeft="10dp"
    android:layout_marginBottom="8dp"
    android:backgroundTint="#E3F0F5"
    android:layout_centerVertical="true"
    card_view:cardCornerRadius="5dp"
    card_view:elevation="14dp"
    >

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <ImageView
            android:layout_width="50dp"
            android:layout_height="50dp"
            android:id="@+id/iv_image"
            android:src="@drawable/avatar1"
            android:layout_centerVertical="true"
            android:layout_marginLeft="15dp"
            android:layout_marginRight="10dp"
            />

        <TextView
            android:textColor="#95989A"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/tv_text"
            android:layout_toRightOf="@+id/iv_image"
            android:gravity="center"/>

        <TextView
            android:textColor="#95989A"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/tv_blah"
            android:text="Another RV Fragment"
            android:layout_below="@+id/tv_text"
            android:layout_toRightOf="@+id/iv_image"
            android:layout_toEndOf="@+id/iv_image"/>

    </RelativeLayout>

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

</RelativeLayout>

这是我的截图: AC_COMPILE_IFELSE

3 个答案:

答案 0 :(得分:1)

id提供AppBarLayout(例如 id = action_bar ),然后只需将layout_below="@id/action_bar"添加到ViewPager

<android.support.v4.view.ViewPager
    android:layout_below="@id/action_bar"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/viewpager">
</android.support.v4.view.ViewPager>

答案 1 :(得分:1)

使用协调器布局而不是相对布局,并将layout_behavior属性设置为视图寻呼机到appbar_scrolling_view_behavior。

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <android.support.v7.widget.Toolbar
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

    <include
        layout="@layout/toolbar_pendaftar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

    <android.support.design.widget.TabLayout
        android:id="@+id/tablayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:tabGravity="fill"
        app:tabMode="fixed"></android.support.design.widget.TabLayout>

</android.support.design.widget.AppBarLayout>

<android.support.v4.view.ViewPager
    android:id="@+id/viewpager"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

</android.support.design.widget.CoordinatorLayout>

答案 2 :(得分:0)

include语句移到appbarlayout之外,并将其与父母的底部对齐,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.martin.app.donorkuyadmin.PendaftarActivity"
    android:background="@drawable/background4">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">


        <android.support.design.widget.TabLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/tablayout"
            app:tabMode="fixed"
            app:tabGravity="fill">
        </android.support.design.widget.TabLayout>

    </android.support.design.widget.AppBarLayout>

    <android.support.v4.view.ViewPager
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/viewpager">
    </android.support.v4.view.ViewPager>

    <include
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        layout="@layout/toolbar_pendaftar"
        android:layout_alignParentBottom="true">
    </include>

</RelativeLayout>