I'm populating a ListView using a SimpleAdapter
ArrayList<Recipe> ciboList = null;
ArrayList<HashMap<String,Object>> data = new ArrayList<HashMap<String,Object>>();
for(int i=0;i<ciboList.size();i++){
// Recipe is my own class defined in another java
Recipe r = (Recipe) ciboList.get(i);
HashMap<String,Object> ricettaMap = new HashMap<String, Object>();
// Informations loaded from Recipe.java
ricettaMap.put("tipo", r.getTipo());
ricettaMap.put("titolo", r.getTitolo());
ricettaMap.put("difficolta", r.getDifficolta());
ricettaMap.put("tempo", r.getTempo());
ricettaMap.put("persone", r.getPersone());
ricettaMap.put("ingredienti", r.getIngredienti());
ricettaMap.put("vino", r.getVino());
ricettaMap.put("consigli", r.getConsigli());
ricettaMap.put("preparazione", r.getPreparazione());
}
}
String[] from = {"tipo", "titolo", "difficolta", "tempo", "ingredienti", "vino", "consigli", "preparazione", "persone"};
int[] to = {R.id.ricettaTipo, R.id.ricettaTitolo, R.id.ricettaDifficolta, R.id.ricettaTempo, R.id.ricettaIngredienti, R.id.ricettaVino, R.id.ricettaConsigli, R.id.ricettaPrep, R.id.ricettaPersone};
SimpleAdapter adapter = new SimpleAdapter(
this,
data,
R.layout.list_cibo,
from,
to);
XML of R.layout.list_cibo
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="50dip"
android:padding="5dip"
android:gravity="right">
<TextView
android:text="Titolo Ricetta"
android:singleLine="true"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_marginLeft="5dip"
android:textAppearance="?android:attr/textAppearanceMedium"
android:scrollHorizontally="false"
android:id="@+id/ricettaTitolo">
</TextView>
<TextView
android:text="Difficoltà"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="#FF0000"
android:layout_marginLeft="5dip"
android:layout_alignParentBottom="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/ricettaDifficolta"
android:singleLine="true"
android:scrollHorizontally="false">
</TextView>
<TextView
android:text="Tempo"
android:layout_toRightOf="@+id/ricettaDifficolta"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="#FF3300"
android:layout_marginLeft="20dip"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/ricettaDifficolta"
android:gravity="right"
android:id="@+id/ricettaTempo"
android:layout_width="fill_parent">
</TextView>
<TextView
android:id="@+id/ricettaTipo"
android:visibility="gone"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</TextView>
<TextView
android:id="@+id/ricettaPersone"
android:visibility="gone"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</TextView>
<TextView
android:visibility="gone"
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:id="@+id/ricettaIngredienti">
</TextView>
<TextView
android:visibility="gone"
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:id="@+id/ricettaVino">
</TextView>
<TextView
android:id="@+id/ricettaConsigli"
android:visibility="gone"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</TextView>
<TextView
android:id="@+id/ricettaPrep"
android:visibility="gone"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</TextView>
</RelativeLayout>
I use three different SimpleAdapter to create three different lists, based on three different colors; what I'd like to do is to create only one list that colors each item in one of the three colors, according to a parameter.
I've tried modifying the TextViews using .setColor
but it doesn't work.
There is a method inside
SimpleAdapter
for that. It's calledViewBinder
. Try to include this line of code immediately after:SimpleAdapter adapter = new SimpleAdapter(this, data, R.layout.list_cibo, from, to);”
and before“setListAdapter(adapter);
.setViewValue
method will be called for eachR.id.ricettaTipo, R.id.ricettaTitolo, R.id.ricettaDifficolta, R.id.ricettaTempo, R.id.ricettaIngredienti, R.id.ricettaVino, R.id.ricettaConsigli, R.id.ricettaPrep, R.id.ricettaPersone.
The setViewValue
method will be called each View/each time one of the aboveR.id’s
is being drawn.Why don't you try extending the SimpleAdapter class with a custom adapter class, maybe recipe adapter, and overwrite the getView(int position, View convertView, ViewGroup parent) Method.
the code is taken from grepcode