web-dev-qa-db-ja.com

カードビューの拡張可能なリストを作成する方法は?

私はよくある問題だと思うので、直接的で明確な解決策を見つけるためにたくさん検索しましたが、残念ながらそれを見つけることができませんでした。

カードビューのリストが必要なので、各カードは特定のデータにバインドされ、各カードには、その親に関するメタデータまたは詳細データを示すリストが含まれています。

したがって、カードビュー内にネストされたリストがあります。

簡単な検索で、親アイテムがカードビューである拡張リストビューを使用する必要があり、その子に対して別のレイアウトが必要であることがわかります。

したがって、カードをクリックすると、ルートのカードの下にアイテムのリストが表示されます。しかし、カードの中に子リストを表示したいですか?

また、トランジションアニメーションやレイアウトの変更を参照するために、子リストIDなどにアクセスすることはできません。

では、明確な質問は、カードビュー内にリストビューを追加する方法です。

tablelayoutとtablerowを使用して作業を追跡します。安定性とバージョンの問題のために外部ライブラリを使用しないことを好みます。これが私の言いたいことです。

私の質問を説明する画像

image that describe my question

8
Javad Karbasian

外部ライブラリを使用したくない場合は、CardViewを次のように展開できます。

拡張可能なCardViewのレイアウトファイル

<?xml version="1.0" encoding="utf-8"?>
<Android.support.v7.widget.CardView
xmlns:card_view="http://schemas.Android.com/apk/res-auto"
xmlns:Android="http://schemas.Android.com/apk/res/Android"
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:id="@+id/cv"
Android:layout_marginTop="5dp"
Android:layout_marginLeft="5dp"
Android:layout_marginRight="5dp"
card_view:cardCornerRadius="5dp">

    <LinearLayout
        Android:layout_width="match_parent"
        Android:layout_height="wrap_content"
        Android:layout_margin="10dp"
        Android:orientation="vertical">

        <RelativeLayout
            Android:layout_width="match_parent"
            Android:layout_height="48dp"
            >

            <TextView
                Android:id="@+id/textView_name"
                Android:layout_marginTop="10dp"
                Android:layout_marginBottom="10dp"
                Android:textSize="18sp"
                Android:layout_width="wrap_content"
                Android:layout_height="wrap_content"
                Android:textStyle="bold" />

            <!--My dropdown Button -->
            <RelativeLayout
                Android:id="@+id/button"
                Android:layout_width="48dp"
                Android:layout_height="48dp"
                Android:layout_gravity="end"
                Android:layout_alignParentRight="true"
                Android:gravity="center"
                >

                <View
                    Android:layout_width="12dp"
                    Android:layout_height="12dp"
                    Android:background="@drawable/triangle"
                    Android:layout_alignParentRight="false"
                    Android:layout_alignParentEnd="false" />
            </RelativeLayout>
        </RelativeLayout>
         <!--The layout below is my ExpandableLayout -->
        <LinearLayout
            Android:id="@+id/expandableLayout"
            Android:layout_width="match_parent"
            Android:layout_height="wrap_content"
            Android:orientation="horizontal"
            >

            <Android.support.v7.widget.AppCompatImageView
                Android:id="@+id/imageView_Owner"
                Android:layout_width="wrap_content"
                Android:layout_height="wrap_content" />

            <LinearLayout
                Android:layout_width="wrap_content"
                Android:layout_height="wrap_content"
                Android:layout_margin="5dp"
                Android:orientation="vertical">

                <TextView
                    Android:id="@+id/textView_Owner"
                    Android:textSize="16sp"
                    Android:layout_width="wrap_content"
                    Android:layout_height="wrap_content" />
                <TextView
                    Android:id="@+id/textView_OwnerUrl"
                    Android:layout_width="wrap_content"
                    Android:layout_height="wrap_content" />


            </LinearLayout>

        </LinearLayout>

    </LinearLayout>

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

私のExpandableRecyclerAdapterクラス

import Android.animation.ObjectAnimator;
import Android.content.Context;
import Android.support.v7.widget.RecyclerView;
import Android.util.SparseBooleanArray;
import Android.view.LayoutInflater;
import Android.view.View;
import Android.view.ViewGroup;
import Android.view.animation.LinearInterpolator;
import Android.widget.ImageView;
import Android.widget.LinearLayout;
import Android.widget.RelativeLayout;
import Android.widget.TextView;

import com.squareup.picasso.Picasso;
import Java.util.List;


public class ExpandableRecyclerAdapter extends RecyclerView.Adapter<ExpandableRecyclerAdapter.ViewHolder> {

private List<Repo> repos;
private SparseBooleanArray expandState = new SparseBooleanArray();
private Context context;

public ExpandableRecyclerAdapter(List<Repo> repos) {
    this.repos = repos;
    //set initial expanded state to false
    for (int i = 0; i < repos.size(); i++) {
        expandState.append(i, false);
    }
}

@Override
public ExpandableRecyclerAdapter.ViewHolder onCreateViewHolder(ViewGroup viewGroup, int i) {
    this.context = viewGroup.getContext();
    View view = LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.expandable_card_row, viewGroup, false);
    return new ViewHolder(view);
}

@Override
public void onBindViewHolder(final ExpandableRecyclerAdapter.ViewHolder viewHolder, final  int i) {

    viewHolder.setIsRecyclable(false);

    viewHolder.tvName.setText(repos.get(i).getName());

    viewHolder.tvOwnerLogin.setText("Owner: " +repos.get(i).getOwner().getLogin());
    viewHolder.tvOwnerUrl.setText(repos.get(i).getOwner().getUrl());

    Picasso.with(context)
            .load(repos.get(i).getOwner().getImageUrl())
            .resize(500, 500)
            .centerCrop()
            .into(viewHolder.ivOwner);

    //check if view is expanded
    final boolean isExpanded = expandState.get(i);
    viewHolder.expandableLayout.setVisibility(isExpanded?View.VISIBLE:View.GONE);

    viewHolder.buttonLayout.setRotation(expandState.get(i) ? 180f : 0f);
    viewHolder.buttonLayout.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(final View v) {
            onClickButton(viewHolder.expandableLayout, viewHolder.buttonLayout,  i);
        }
    });
}

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

public class ViewHolder extends RecyclerView.ViewHolder{

    private TextView tvName,tvOwnerLogin, tvOwnerUrl;
    private ImageView ivOwner;
    public RelativeLayout buttonLayout;
    public LinearLayout expandableLayout;

    public ViewHolder(View view) {
        super(view);

        tvName = (TextView)view.findViewById(R.id.textView_name);
        tvId = (TextView)view.findViewById(R.id.textView_id);
        tvUrl = (TextView)view.findViewById(R.id.textView_url);
        tvOwnerLogin = (TextView)view.findViewById(R.id.textView_Owner);
        tvOwnerUrl = (TextView)view.findViewById(R.id.textView_OwnerUrl);
        ivOwner = (ImageView) view.findViewById(R.id.imageView_Owner);

        buttonLayout = (RelativeLayout) view.findViewById(R.id.button);
        expandableLayout = (LinearLayout) view.findViewById(R.id.expandableLayout);
    }
}

private void onClickButton(final LinearLayout expandableLayout, final RelativeLayout buttonLayout, final  int i) {

    //Simply set View to Gone if not expanded
    //Not necessary but I put simple rotation on button layout
    if (expandableLayout.getVisibility() == View.VISIBLE){
        createRotateAnimator(buttonLayout, 180f, 0f).start();
        expandableLayout.setVisibility(View.GONE);
        expandState.put(i, false);
    }else{
        createRotateAnimator(buttonLayout, 0f, 180f).start();
        expandableLayout.setVisibility(View.VISIBLE);
        expandState.put(i, true);
    }
}

//Code to rotate button
private ObjectAnimator createRotateAnimator(final View target, final float from, final float to) {
    ObjectAnimator animator = ObjectAnimator.ofFloat(target, "rotation", from, to);
    animator.setDuration(300);
    animator.setInterpolator(new LinearInterpolator());
    return animator;
}
}

アクティビティ/フラグメントで、次のようにRecyclerViewを設定します

private RecyclerView recyclerView;
private List<Repo> data;

recyclerView = (RecyclerView)findViewById(R.id.card_recycler_view);
recyclerView.setHasFixedSize(true);
RecyclerView.LayoutManager layoutManager = new LinearLayoutManager(getApplicationContext());
recyclerView.setLayoutManager(layoutManager);
//fetch data and on ExpandableRecyclerAdapter
recyclerView.setAdapter(new ExpandableRecyclerAdapter(data));

したがって、外部ライブラリなしで拡張可能なCardViewを作成するのは非常に簡単です。コードは、RecyclerViewで通常のCardViewを使用する場合とほぼ同じです。主な変更点は、ボタンをクリックしたときにView.GONE /View.VISIBLEを設定することです。

17
GraSim

ExpandLayout を使用して、それをcardviewに追加できます。

<com.kyo.expandablelayout.ExpandableLayout
        Android:id="@+id/expandlayout"
        Android:layout_width="match_parent"
        Android:layout_height="wrap_content"
        Android:padding="12dp" >

        <ImageView
            Android:id="@+id/imageview"
            Android:layout_width="match_parent"
            Android:layout_height="wrap_content"
            Android:contentDescription="@null"
            Android:scaleType="centerCrop"
            Android:src="@drawable/parent" />

        <ImageView
            Android:layout_width="match_parent"
            Android:layout_height="wrap_content"
            Android:layout_marginTop="6dp"
            Android:contentDescription="@null"
            Android:scaleType="centerCrop"
            Android:src="@drawable/child"
            app:canExpand="true" />
    </com.kyo.expandable.ExpandableLayout>
0