CardListView を使用して cardLib ライブラリでカードのリストを作成します。
さまざまな配列リストからカードのテキストを取得します。問題は、内側のタイトルだけでなく、カードの実際の上部ヘッダー タイトルの色を変更することです。
内側のタイトルで機能するコードだけを見つけました。
フラグメントにリストを作成するための for ループでは:
switch (statuser.get(j)){
case "Aflyst!":
card.setColor(Color.RED);
break;
case "Ændret!":
card.setColor(Color.GREEN);
break;
}
「setupInnerViewElements」を使用したカードの私のクラス:
public class ModulCard extends Card {
public String title1; //just an example... use gettes and setters
public int color;
public void setColor(int color) {
this.color = color;
}
public void setTitle1(String title1) {
this.title1 = title1;
}
public ModulCard(Context context) {
super(context, R.layout.modul_card);
}
@Override
public void setupInnerViewElements(ViewGroup parent, View view) {
TextView tx = (TextView) view.findViewById(R.id.card_main_inner_simple_title);
tx.setText(title1);
tx.setTextColor(color);
addCardHeader(mCardHeader);
}
}
カード レイアウト ファイル:
<?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="wrap_content"
android:orientation="vertical"
android:padding="10dp" >
<TextView
android:id="@+id/card_main_inner_simple_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="@color/Gray"/>
</LinearLayout>
これは「card_main_inner_simple_title」の色を変更しますが、実際のヘッダー タイトルの色を変更する方法がわかりません。これを行うには、costum ヘッダーを作成する必要がありますか?
ありがとうございました