Adding ListView Sub Item Text in Android

前端 未结 4 1187
忘了有多久
忘了有多久 2020-12-02 10:52

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

相关标签:
4条回答
  • 2020-12-02 11:15

    create a custom listView http://saigeethamn.blogspot.com/2010/04/custom-listview-android-developer.html

    0 讨论(0)
  • 2020-12-02 11:16

    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 TextViews, 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:

    • a 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.
    • an array of strings, where to put the names of the keys in each map that you want to show on the ListView.
    • an array of integers where you need to put the ids of the parts in the list item view where you want the single elements referenced by the keys in the preceding array of strings to be shown. For example, if you want to show the title and date of a RSS item in the "item" and "sub item" views respectively, you use 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.

    0 讨论(0)
  • 2020-12-02 11:17

    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.

    0 讨论(0)
  • 2020-12-02 11:20

    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!

    0 讨论(0)
提交回复
热议问题