如何使用固定项目实现MainActivity卡视图菜单?

时间:2016-02-13 09:10:37

标签: android android-cardview

我应该用什么来实现4个固定项目菜单,用户将从哪个菜单进入下一个活动?这4张卡片视图应该是相同的大小,所有可见而不滚动。

我想使用卡片视图,但我不知道是否应将其放入RecyclerView或制作4张单独的卡片视图。

感谢您的帮助

enter image description here

2 个答案:

答案 0 :(得分:0)

如果cardviews的数量只有4并且它们是固定的,那么就不需要再循环查看。把它们放在另一个之下。使用LinearLayout并将其方向设置为垂直。将所有cardviews放在此LinearLayout中。

然后,您可以分别在每个CardView上设置onClick侦听器,以转到所需的Activity。

答案 1 :(得分:0)

以下是使用cardview修复四个布局。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:orientation="vertical">

<android.support.v7.widget.CardView
    android:layout_width="match_parent"
    android:layout_weight="1"
    android:layout_height="match_parent">

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

        <ImageView
            android:layout_width="50dp"
            android:layout_height="match_parent"
            android:src="@drawable/ic_launcher"

            />

        <TextView android:layout_width="match_parent"
                  android:layout_height="wrap_content"
                  android:text="dsafdaf"/>

    </LinearLayout>

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

<android.support.v7.widget.CardView
    android:layout_width="match_parent"
    android:layout_weight="1"
    android:layout_height="match_parent">

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

        <ImageView
            android:layout_width="50dp"
            android:layout_height="match_parent"
            android:src="@drawable/ic_launcher"

            />

        <TextView android:layout_width="match_parent"
                  android:layout_height="wrap_content"
                  android:text="dsafdaf"/>

    </LinearLayout>

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

<android.support.v7.widget.CardView
    android:layout_width="match_parent"
    android:layout_weight="1"
    android:layout_height="match_parent">

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

        <ImageView
            android:layout_width="50dp"
            android:layout_height="match_parent"
            android:src="@drawable/ic_launcher"

            />

        <TextView android:layout_width="match_parent"
                  android:layout_height="wrap_content"
                  android:text="dsafdaf"/>

    </LinearLayout>

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

<android.support.v7.widget.CardView
    android:layout_width="match_parent"
    android:layout_weight="1"
    android:layout_height="match_parent">

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

        <ImageView
            android:layout_width="50dp"
            android:layout_height="match_parent"
            android:src="@drawable/ic_launcher"

            />

        <TextView android:layout_width="match_parent"
                  android:layout_height="wrap_content"
                  android:text="dsafdaf"/>

    </LinearLayout>

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

</LinearLayout>