簡體   English   中英

Android:如何為卡片視圖陣列列表中的每個單個項目設置ID,並且可點擊?

[英]Android : How to set ID's for every single items in list of arrays of card view and be clickable?

嗨...我是android開發的新手,我現在在的android項目面臨一些問題。 下面的代碼成功返回了activity_ticket_info.xml布局上的項目列表。 由於項目的數量是基於循環過程而出現的,因此如何為出現的每個單個項目設置一個ID,以便以后可以將其設置為可點擊的項目,以用於其他活動布局? 請幫我解決這個問題。 非常感謝您的幫助..

TicketAdapter.java

 package info.androidhive.navigationdrawer.activity;

import android.content.Context;
import android.content.Intent;
import android.support.v7.widget.CardView;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Toast;

import info.androidhive.navigationdrawer.R;
import info.androidhive.navigationdrawer.ticketfragments.ComboA_TicketFragment;
import info.androidhive.navigationdrawer.ticketfragments.ComboB_TicketFragment;
import info.androidhive.navigationdrawer.ticketfragments.ComboC_TicketFragment;
import info.androidhive.navigationdrawer.ticketfragments.ComboD_TicketFragment;
import info.androidhive.navigationdrawer.ticketfragments.ComboE_TicketFragment;
import info.androidhive.navigationdrawer.ticketfragments.ComboF_TicketFragment;
import info.androidhive.navigationdrawer.ticketfragments.DuckTourTicketFragment;
import info.androidhive.navigationdrawer.ticketfragments.FOneSimulatorFragment;
import info.androidhive.navigationdrawer.ticketfragments.SixDCinemotionTicketFragment;
import info.androidhive.navigationdrawer.ticketfragments.SkyCabBasicTicketFragment;
import info.androidhive.navigationdrawer.ticketfragments.SkyCabExpressLaneTicketFragment;
import info.androidhive.navigationdrawer.ticketfragments.SkyCabPrivateVipGlassTicketFragment;

import static android.R.attr.x;

/**
 * Created by user on 11/14/2016.
 */

public class TicketAdapter extends RecyclerView.Adapter<TicketViewHolder>
{
    String [] name = {
                    "Combo A",
                    "Combo B",
                    "Combo C",
                    "Combo D",
                    "Combo E",
                    "Combo F",
                    "Combo G",
                    "Combo H",
                    "Combo I",
                    "Combo J",
                    "Combo K",
                    "Combo L"
                    };

    Context context;
    LayoutInflater inflater;

    public TicketAdapter(Context context)
    {
        this.context = context;
        inflater = LayoutInflater.from(context);
    }

    @Override
    public TicketViewHolder onCreateViewHolder(ViewGroup parent, int viewType)
    {
        View v = inflater.inflate(R.layout.item_list, parent, false);

        TicketViewHolder viewHolder = new TicketViewHolder(v);
        return viewHolder;
    }

    @Override
    public void onBindViewHolder(TicketViewHolder holder, final int position)
    {
        holder.textTitle.setText(name[position]);
/*      holder.textDesc.setText(desc[position]);*/
        holder.imageView.setOnClickListener(clickListener);
        holder.imageView.setTag(holder);
//        holder.imageView.setId(positionId[position]);

        holder.cardview.setOnClickListener(new View.OnClickListener()
        {
            @Override
            public void onClick(View v)
            {
                switch (position)
                {
                    case 0:
                        Intent intent0 = new Intent(v.getContext(),SkyCabBasicTicketFragment.class);
                        v.getContext().startActivity(intent0);
                        break;
                    case 1:
                        Intent intent1 = new Intent(v.getContext(),SkyCabExpressLaneTicketFragment.class);
                        v.getContext().startActivity(intent1);
                        break;
                    case 2:
                        Intent intent2 = new Intent(v.getContext(),SkyCabPrivateVipGlassTicketFragment.class);
                        v.getContext().startActivity(intent2);
                        break;
                    case 3:
                        Intent intent3 = new Intent(v.getContext(),SixDCinemotionTicketFragment.class);
                        v.getContext().startActivity(intent3);
                        break;
                    case 4:
                        Intent intent4 = new Intent(v.getContext(),DuckTourTicketFragment.class);
                        v.getContext().startActivity(intent4);
                        break;
                    case 5:
                        Intent intent5 = new Intent(v.getContext(),FOneSimulatorFragment.class);
                        v.getContext().startActivity(intent5);
                        break;
                    case 6:
                        Intent intent6 = new Intent(v.getContext(),ComboA_TicketFragment.class);
                        v.getContext().startActivity(intent6);
                        break;
                    case 7:
                        Intent intent7 = new Intent(v.getContext(),ComboB_TicketFragment.class);
                        v.getContext().startActivity(intent7);
                        break;
                    case 8:
                        Intent intent8 = new Intent(v.getContext(),ComboC_TicketFragment.class);
                        v.getContext().startActivity(intent8);
                        break;
                    case 9:
                        Intent intent9 = new Intent(v.getContext(),ComboD_TicketFragment.class);
                        v.getContext().startActivity(intent9);
                        break;
                    case 10:
                        Intent intent10 = new Intent(v.getContext(),ComboE_TicketFragment.class);
                        v.getContext().startActivity(intent10);
                        break;
                    case 11:
                        Intent intent11 = new Intent(v.getContext(),ComboF_TicketFragment.class);
                        v.getContext().startActivity(intent11);
                        break;
                }

            }
        });
    }

    View.OnClickListener clickListener = new View.OnClickListener()
    {
        @Override
        public void onClick(View v)
        {
            TicketViewHolder vholder = (TicketViewHolder) v.getTag();
            int position = vholder.getPosition();

/*            Toast.makeText(context,"You have choose " + position,Toast.LENGTH_LONG ).show();*/

            //Display toast message with each tickets caption details
            Toast.makeText(context,"You have choose " + (name[position]),Toast.LENGTH_LONG ).show();
        }
    };

    @Override
    public int getItemCount()
    {
        return name.length;
    }
}

**更新:我正在嘗試為需要導航到每個片段布局的每個項目實現上述switch case語句,並且根本沒有發現任何錯誤,但是它不起作用。 上面的switch case語句可能是瀏覽每個項目的正確方法,還是有另一種更好的實現方法? **

TicketInfoActivity.java

package info.androidhive.navigationdrawer.activity;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.MenuItem;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.view.View;

import info.androidhive.navigationdrawer.R;

import static info.androidhive.navigationdrawer.R.id.name;

public class TicketInfoActivity extends AppCompatActivity
{
    RecyclerView ticketView;

    /** Called when the activity is first created. */
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_ticket_info);
        getSupportActionBar().setDisplayHomeAsUpEnabled(true);

        ticketView = (RecyclerView) findViewById(R.id.my_recycler_view);

        TicketAdapter adapter = new TicketAdapter(this);
        ticketView.setAdapter(adapter);
        ticketView.setHasFixedSize(true);
        ticketView.setLayoutManager(new LinearLayoutManager(this));
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item)
    {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();

        //noinspection SimplifiableIfStatement
        if (id == android.R.id.home)
        {
            // finish the activity
            onBackPressed();
            return true;
        }
        return super.onOptionsItemSelected(item);
    }
}

TicketViewHolder.java

package info.androidhive.navigationdrawer.activity;

import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;

import info.androidhive.navigationdrawer.R;

public class TicketViewHolder extends RecyclerView.ViewHolder
{
    TextView textTitle,textDesc;
    ImageView imageView;
    CardView cardview;

    public TicketViewHolder(View itemView)
    {
        super(itemView);

        textTitle = (TextView) itemView.findViewById(R.id.list_title);
/*        textDesc = (TextView) itemView.findViewById(R.id.list_desc);*/
        imageView = (ImageView) itemView.findViewById(R.id.list_avatar);
        cardview = (CardView) itemView.findViewById(R.id.ticket_view);
    }
}

item_list.xml

<?xml version="1.0" encoding="utf-8"?>

<android.support.v7.widget.CardView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/ticket_view"
    android:layout_width="match_parent"
    android:layout_height="160dp"
    android:layout_marginBottom="16dp"
    android:layout_marginLeft="10dp"
    android:layout_marginRight="10dp"
    android:background="#C5CAE9"
    android:foreground="?attr/selectableItemBackground"
    android:theme="@style/ThemeOverlay.AppCompat.Light">

    <RelativeLayout
        android:layout_width="match_parent"
        android:gravity="center"
        android:paddingTop="16dp"
        android:layout_height="match_parent">

        <!-- Icon -->
        <ImageView
            android:id="@+id/list_avatar"
            android:layout_width="match_parent"
            android:layout_height="85dp"
            android:scaleType="fitCenter"
            android:src="@drawable/ic_tickets_info_color_48dp"
            android:layout_alignParentTop="true"
            android:layout_alignParentRight="true"
            android:layout_alignParentEnd="true" />

        <!-- Title -->
        <TextView
            android:id="@+id/list_title"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Product Description Goes Here... "
            android:textColor="#000000"
            android:textStyle="bold"
            android:textAppearance="?attr/textAppearanceListItem"
            android:textSize="18sp"
            android:gravity="center_horizontal"
            android:layout_below="@+id/list_avatar"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true"
            android:layout_marginTop="15dp"/>

        <!-- Description -->

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

activity_ticket_info.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    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:id="@+id/activity_ticket_info"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="info.androidhive.navigationdrawer.activity.TicketInfoActivity">

    <!--<include layout="@layout/actionbar_layout" />-->

    <android.support.v7.widget.RecyclerView
        android:id="@+id/my_recycler_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:clipToPadding="false"
        android:paddingBottom="16dp"
        android:paddingTop="16dp"
        android:scrollbars="vertical"
        android:layout_alignParentTop="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true" />
</RelativeLayout>

我認為沒有這種方法可以動態地為每個項目提供ID。根據上面的程序,您一次只能在recyclerView中選擇一個項目。 更好地在主要活動中創建一種方法,如下所示

public void setRVAdapterSelectedItem(String itemName){this.itemName = itemName;}

並通過從適配器的onClick調用將點擊的字符串設置為活動

context.setRVAdapterSelectedItem(selectedString);

這樣您就可以在“活動”中獲得列表。 對於項目列表,最好使用模型類。 因此,您可以使用布爾值來標識是否選擇了該項目,並可以使用它來突出顯示onBindViewHolder中的項目

如果要以后用作可單擊對象,而不是分配ID,則可以在返回每個項目時為每個項目設置偵聽器並調用意圖。

但是,如果仍然要分配ID,則可以使用setId(int)方法,該方法可用於所有類型的小部件..和視圖

如果您只想單擊每個Cardview項目,則可以創建界面

public interface ItemClickListener {
    void onItemClick(View v, int pos);
}

並像這樣在您的適配器類上實現

public class MyAdapter extends RecyclerView.Adapter<MyAdapter.MyViewHolder>{

private List<Model> list;
Context mContext;
public MyAdapter(Context context,List<Model> list) {
    mContext=context;
    this.list = list;
}

@Override
public MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
    View itemView = LayoutInflater.from(parent.getContext())
            .inflate(R.layout.card_view, parent, false);
    return new MyViewHolder(itemView);
}

@Override
public void onBindViewHolder(MyViewHolder holder, int position) {
    final Model model = list.get(position);
    holder.name.setText("name :"+model.getName());
    holder.setItemClickListener(new ItemClickListener() {
        @Override
        public void onItemClick(View v, int position) {
            Snackbar.make(v,list.get(position).getName(),Snackbar.LENGTH_SHORT).show();
            Intent i=new Intent(mContext, Showname.class);
            mContext.startActivity(i);
        }
    });
}

@Override
public int getItemCount() {
    return list.size();
}

public class MyViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener
{
    public TextView name,branch,sem;
    ItemClickListener itemClickListener;
    public MyViewHolder(View itemView) {
        super(itemView);
        name = (TextView)itemView.findViewById(R.id.s_name);
        itemView.setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
        this.itemClickListener.onItemClick(v,getLayoutPosition());
    }
    public void setItemClickListener(ItemClickListener ic)
    {
        this.itemClickListener=ic;
    }
}
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM