我无法从一个卡片视图活动中导航到多个活动。我可以导航到“仅1个”

时间:2019-02-16 07:51:41

标签: java android android-cardview

我是第一次使用cardview。我已经创建了6张卡片,并让它们听用户点击,但是只有第一个卡片视图有效,并且可以导航到下一个活动,而没有其他工作。甚至我都尝试过所有点击方法。

我试图通过XML使用OnClickListner和onClick。在Java中,它不会给出任何错误,但我无法导航,在XML中,当我编写onClick方法时,它只会给出诸如“找不到.....”的错误。

     <?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:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".landing_screen"
    android:background="@drawable/bg"
    android:orientation="vertical"
    android:padding="5dp"
    android:gravity="center"
    >
    <TextView
       android:layout_marginBottom="0dp"
        android:textSize="20sp"
        android:layout_gravity="center"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="Please Choose Who you are"/>
    <LinearLayout

        android:clipToPadding="false"
        android:gravity="center"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
    <android.support.v7.widget.CardView
        app:cardBackgroundColor="#"
        android:onClick="passenger"
        android:foreground="?android:attr/selectableItemBackground"
        android:clickable="true"
        android:layout_width="140dp"
        android:layout_height="140dp"
        android:layout_margin="5dp">
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical"
            android:gravity="center">

            <ImageView
                android:padding="5dp"
                android:src="@drawable/passenger"
                android:layout_width="56dp"
                android:layout_height="64dp"
                android:background="@drawable/circlebgpurple"/>
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textStyle="bold"
                android:layout_marginTop="2dp"
                android:text="Passenger"
                android:textColor="#000"

                />
            <View
                android:layout_width="match_parent"
                android:layout_height="1dp"
                android:background="@color/line"
                android:layout_margin="2dp"/>
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:text="I am a Passenger"
                android:textColor="#000"
                android:padding="5dp"
                />

        </LinearLayout>
    </android.support.v7.widget.CardView>
        <android.support.v7.widget.CardView
            app:cardBackgroundColor="#"
            android:id="@+id/relativecard"
            android:foreground="?android:attr/selectableItemBackground"
            android:clickable="true"
            android:layout_width="140dp"
            android:layout_height="140dp"
            android:layout_margin="5dp">
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical"
                android:gravity="center">

                <ImageView
                    android:padding="5dp"
                    android:src="@drawable/boy"
                    android:layout_width="56dp"
                    android:layout_height="64dp"
                    android:background="@drawable/circlebggreen"/>
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:textStyle="bold"
                    android:layout_marginTop="2dp"
                    android:text="Relative"
                    android:textColor="#000"

                    />
                <View
                    android:layout_width="match_parent"
                    android:layout_height="1dp"
                    android:background="@color/line"
                    android:layout_margin="2dp"/>
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:gravity="center"
                    android:text="I am a Relative"
                    android:textColor="#000"
                    android:padding="5dp"
                    />
            </LinearLayout>
        </android.support.v7.widget.CardView>
    </LinearLayout>
    <LinearLayout
        android:clipToPadding="false"
        android:gravity="center"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <android.support.v7.widget.CardView
            app:cardBackgroundColor="#"
            android:id="@+id/drivercard"
            android:foreground="?android:attr/selectableItemBackground"
            android:clickable="true"
            android:layout_width="140dp"
            android:layout_height="140dp"
            android:layout_margin="5dp">
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical"
                android:gravity="center">

                <ImageView
                    android:padding="8dp"
                    android:src="@drawable/driver"
                    android:layout_width="56dp"
                    android:layout_height="64dp"
                    android:background="@drawable/circlebgyellow"/>
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:textStyle="bold"
                    android:layout_marginTop="2dp"
                    android:text="Driver"
                    android:textColor="#000"

                    />
                <View
                    android:layout_width="match_parent"
                    android:layout_height="1dp"
                    android:background="@color/line"
                    android:layout_margin="2dp"/>
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:gravity="center"
                    android:text="I am a Driver"
                    android:textColor="#000"
                    android:padding="5dp"
                    />

            </LinearLayout>
        </android.support.v7.widget.CardView>
        <android.support.v7.widget.CardView
            app:cardBackgroundColor="#"
            android:id="@+id/tkchecker"
            android:foreground="?android:attr/selectableItemBackground"
            android:clickable="true"
            android:layout_width="140dp"
            android:layout_height="140dp"
            android:layout_margin="5dp">
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical"
                android:gravity="center">

                <ImageView
                    android:padding="5dp"
                    android:src="@drawable/ic_ticket_checker"
                    android:layout_width="56dp"
                    android:layout_height="64dp"
                    android:background="@drawable/circlebgpink"/>
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:textStyle="bold"
                    android:layout_marginTop="2dp"
                    android:text="Ticket Checker"
                    android:textColor="#000"

                    />
                <View
                    android:layout_width="match_parent"
                    android:layout_height="1dp"
                    android:background="@color/line"
                    android:layout_margin="2dp"/>
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:gravity="center"
                    android:text="I'm a TicketChecker"
                    android:textColor="#000"
                    android:padding="5dp"
                    />

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



    </LinearLayout>
    <LinearLayout
        android:clipToPadding="false"
        android:gravity="center"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <android.support.v7.widget.CardView
            app:cardBackgroundColor="#"
            android:id="@+id/subadmin"
            android:foreground="?android:attr/selectableItemBackground"
            android:clickable="true"
            android:layout_width="140dp"
            android:layout_height="140dp"
            android:layout_margin="5dp">
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical"
                android:gravity="center">

                <ImageView
                    android:padding="5dp"
                    android:src="@drawable/subadmin"
                    android:layout_width="56dp"
                    android:layout_height="64dp"
                    android:background="@drawable/circlebgyellow"/>
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:textStyle="bold"
                    android:layout_marginTop="2dp"
                    android:text="Sub-Admin"
                    android:textColor="#000"

                    />
                <View
                    android:layout_width="match_parent"
                    android:layout_height="1dp"
                    android:background="@color/line"
                    android:layout_margin="2dp"/>
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:gravity="center"
                    android:text="I am a Sub-Admin"
                    android:textColor="#000"
                    android:padding="5dp"
                    />

            </LinearLayout>
        </android.support.v7.widget.CardView>
        <android.support.v7.widget.CardView
            app:cardBackgroundColor="#"
            android:id="@+id/admin"
            android:foreground="?android:attr/selectableItemBackground"
            android:clickable="true"
            android:layout_width="140dp"
            android:layout_height="140dp"
            android:layout_margin="5dp">
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical"
                android:gravity="center">

                <ImageView
                    android:layout_width="56dp"
                    android:layout_height="64dp"
                    android:background="@drawable/circlebggreen"
                    android:padding="5dp"
                    android:src="@drawable/manager" />
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:textStyle="bold"
                    android:layout_marginTop="5dp"
                    android:text="Admin"
                    android:textColor="#000"

                    />
                <View
                    android:layout_width="match_parent"
                    android:layout_height="1dp"
                    android:background="@color/line"
                    android:layout_margin="2dp"/>
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:gravity="center"
                    android:text="I am the Admin"
                    android:textColor="#000"
                    android:padding="2dp"
                    />

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



    </LinearLayout>

</LinearLayout>


[![enter image description here][1]][1]

我只想单击时导航到每个CardView的相应活动。

Java代码:

public class relative extends AppCompatActivity {

    CardView relativecard;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.sign_up);
        relativecard = (CardView)findViewById(R.id.relativecard);


        relativecard.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                Intent relative = new Intent(getApplicationContext(), signup.class);
                startActivity(relative);
            }
        });

    }

}

1 个答案:

答案 0 :(得分:0)

可能您应该以XML的形式为所有卡定义onClick属性,然后在活动中定义以XML命名的方法,然后根据id编写if-else或switch语句的点击次数,然后点击任意视图,您都需要进行匹配并执行操作。像这样:

public void myMethod(View v){
     switch(v.getId()){
          case R.id.cardOne:
               //do something here when card one is clicked
          break;
          case R.id.cardTwo:
              //do something here when card two is clicked.
          break;
          .
          . and so on.
 }

在XML文件中,您需要将myMethod放在每张卡的onClick属性中,以便每当单击一张卡时,它将在相应的活动中调用myMethod()