I have created an RSS reader that lists items in a listview. I also want a date below each item, but I have no idea how to do that. I need someone\'s help to make the Sub
create a custom listView http://saigeethamn.blogspot.com/2010/04/custom-listview-android-developer.html
The simplest solution is probably to substitute the ArrayAdapter
and the android.R.layout.simple_list_item_1
that you are using with a SimpleAdapter
and the android.R.layout.simple_list_item_2
predefined layout. This layout is composed by two TextView
s, with an id of android.R.id.text1
(the "item") and android.R.id.text2
(the "sub item") respectively, which you will need as a reference for the SimpleAdapter
to work.
By looking at the constructor for SimpleAdapter
you will notice that, apart from a Context
instance and the id of a layout resource, it takes three parameters that may be new to you:
List<? extends Map<String, ?>>
instance where you put the elements you want the ListView
to show. Elements are in the form of a Map
, i.e. something akin to a struct composed by properties in form of name/value pairs. For example, you may use "title"
and "date"
as keys for the title and date of each RSS item, respectively.ListView
.new String[] { "title", "date" }
as the array of strings argument, and new int[] { android.R.id.text1, android.R.id.text2 }
as this argument.A rough code example, just to give you the idea:
List<Map<String, String>> data = new ArrayList<Map<String, String>>();
for (RSSItem item : feed.getAllItems()) {
Map<String, String> datum = new HashMap<String, String>(2);
datum.put("title", item.getTitle());
datum.put("date", item.getDate().toString());
data.add(datum);
}
SimpleAdapter adapter = new SimpleAdapter(this, data,
android.R.layout.simple_list_item_2,
new String[] {"title", "date"},
new int[] {android.R.id.text1,
android.R.id.text2});
itemList.setAdapter(adapter);
The documentation states that "the maps contain the data for each row, and should include all the entries specified in the from parameter", so both title and date should always be present.
Please note that this is all off the top of my head. I haven't actually tested all the code, so you may very well encounter some quirk or bug that you need to adjust or fix on your way up.
Since you want to map multiple data items to multiple views, you can't use an ArrayAdapter. You'll have to use a SimpleAdapter instead.
Also, I noticed you're getting the RSS feed on the main UI thread. This is going to cause your application to be highly non-responsive. If you don't know what I'm talking about, take a gander at the Painless Threading article (I consider it a must read for any android developer). What you should do instead is use a Loader. They were designed for exactly you type of situation. Although they weren't introduced until API-10 you can still use them on lesser API levels via the Support Package.
You should have an item_list.xml file like this:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="6dp" >
<TextView
android:id="@+id/page_title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#D8000000"
android:textSize="16sp"
android:textStyle="bold" />
<TextView
android:id="@+id/page_date"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/page_title"
android:ellipsize="marquee"
android:lines="3"
android:marqueeRepeatLimit="marquee_forever"
android:textColor="#D8000000"
android:textSize="12sp" />
</RelativeLayout>
and in your listadapter in the method getview :
View row = convertView;
LayoutInflater inflater = ((Activity) mContext).getLayoutInflater();
row = inflater.inflate(R.layout.item_list, parent, false);
TextView listTitle = (TextView) row.findViewById(R.id.page_title);
listTitle.setText(title);
TextView date = (TextView) row.findViewById(R.id.page_date);
date.setText( <here put your date from RSS feed>);
return row;
this should do it!