ここにある CardUI を使用しています。
これらのカードを独自のレイアウト xml で膨らませたいのですが、方法がわかりません。
カードを作成する MainActivity のコードを次に示します。
MyCard facebookCard = new MyCard("Continue with Facebook");
MyCard noSignInCard = new MyCard("Continue without log in");
mCardView.addCard(facebookCard);
mCardView.addCard(noSignInCard);
これがmyCardのクラスです
package com.kc.umassguide;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.TextView;
import com.fima.cardsui.objects.Card;
public class MyCard extends Card {
public MyCard(String title){
super(title);
}
@Override
public View getCardContent(Context context) {
View view = LayoutInflater.from(context).inflate(R.layout.card_ex, null);
((TextView) view.findViewById(R.id.title)).setText(title);
return view;
}
}
インフレにはgetCardContentを使用することになっていると思いますが、コンテキストの使用方法は確かです。
どんな助けでも大歓迎です。