リストビューでアイテムをリストするRSSリーダーを作成しました。また、各項目の下に日付が必要ですが、その方法がわかりません。 RSSフィードから取得したpubDateをサブアイテムテキストに表示するには、誰かの助けが必要です。
これは私がクラスに持っているコードです:
public class RSSReader extends Activity implements OnItemClickListener
{
public final String RSSFEEDOFCHOICE = "http://app.calvaryccm.com/mobile/Android/v1/devos";
public final String tag = "RSSReader";
private RSSFeed feed = null;
/** Called when the activity is first created. */
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.main);
// go get our feed!
feed = getFeed(RSSFEEDOFCHOICE);
// display UI
UpdateDisplay();
}
private RSSFeed getFeed(String urlToRssFeed)
{
try
{
// setup the url
URL url = new URL(urlToRssFeed);
// create the factory
SAXParserFactory factory = SAXParserFactory.newInstance();
// create a parser
SAXParser parser = factory.newSAXParser();
// create the reader (scanner)
XMLReader xmlreader = parser.getXMLReader();
// instantiate our handler
RSSHandler theRssHandler = new RSSHandler();
// assign our handler
xmlreader.setContentHandler(theRssHandler);
// get our data via the url class
InputSource is = new InputSource(url.openStream());
// perform the synchronous parse
xmlreader.parse(is);
// get the results - should be a fully populated RSSFeed instance, or null on error
return theRssHandler.getFeed();
}
catch (Exception ee)
{
// if we have a problem, simply return null
System.out.println(ee.getMessage());
System.out.println(ee.getStackTrace());
System.out.println(ee.getCause());
return null;
}
}
public boolean onCreateOptionsMenu(Menu menu)
{
super.onCreateOptionsMenu(menu);
menu.add(Menu.NONE, 0, 0, "Refresh");
Log.i(tag,"onCreateOptionsMenu");
return true;
}
public boolean onOptionsItemSelected(MenuItem item){
switch (item.getItemId()) {
case 0:
Log.i(tag,"Set RSS Feed");
return true;
case 1:
Log.i(tag,"Refreshing RSS Feed");
return true;
}
return false;
}
private void UpdateDisplay()
{
TextView feedtitle = (TextView) findViewById(R.id.feedtitle);
TextView feedpubdate = (TextView) findViewById(R.id.feedpubdate);
ListView itemlist = (ListView) findViewById(R.id.itemlist);
if (feed == null)
{
feedtitle.setText("No RSS Feed Available");
return;
}
if(feedtitle != null)
feedtitle.setText(feed.getTitle());
if(feedpubdate != null)
feedpubdate.setText(feed.getPubDate());
ArrayAdapter<RSSItem> adapter = new ArrayAdapter<RSSItem>(this,Android.R.layout.simple_list_item_1,feed.getAllItems());
itemlist.setAdapter(adapter);
itemlist.setOnItemClickListener(this);
itemlist.setSelection(0);
}
@Override
public void onItemClick(AdapterView parent, View v, int position, long id)
{
//Log.i(tag,"item clicked! [" + feed.getItem(position).getTitle() + "]");
Intent itemintent = new Intent(this,ShowDescription.class);
Bundle b = new Bundle();
b.putString("title", feed.getItem(position).getTitle());
b.putString("description", feed.getItem(position).getDescription());
b.putString("link", feed.getItem(position).getLink());
b.putString("pubdate", feed.getItem(position).getPubDate());
itemintent.putExtra("Android.intent.extra.INTENT", b);
startActivity(itemintent);
}
}
これは私のXMLです:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
Android:orientation="vertical"
Android:layout_width="fill_parent"
Android:layout_height="fill_parent">
<TextView
Android:layout_width="fill_parent"
Android:layout_height="wrap_content"
Android:text="Android RSSReader"
Android:id="@+id/feedtitle"/>
<TextView
Android:layout_width="fill_parent"
Android:layout_height="wrap_content"
Android:text=""
Android:id="@+id/feedpubdate"/>
<ListView
Android:layout_width="fill_parent"
Android:layout_height="fill_parent"
Android:id="@+id/itemlist"
Android:fastScrollEnabled="true"/>
</LinearLayout>
これは、Eclipseでの現在の表示です。
これは実行中のように見えます:
RSSフィードから取得したpubDateをサブアイテムテキストに表示する方法は?
最も簡単な解決策は、おそらくArrayAdapter
とAndroid.R.layout.simple_list_item_1
使用しているSimpleAdapter
とAndroid.R.layout.simple_list_item_2
事前定義されたレイアウト。このレイアウトは、2つのTextView
sで構成され、IDはAndroid.R.id.text1
(「アイテム」)およびAndroid.R.id.text2
(「サブアイテム」)、それぞれSimpleAdapter
が機能するための参照として必要になります。
コンストラクターを見るSimpleAdapter
の場合、Context
インスタンスとレイアウトリソースのidを除いて、新しい可能性のある3つのパラメーターが必要であることに気付くでしょう。あなたへ:
List<? extends Map<String, ?>>
ListView
に表示したい要素を置くインスタンス。要素はMap
の形式です。つまり、名前/値のペアの形式のプロパティで構成される構造体に似たものです。たとえば、"title"
および"date"
各RSSアイテムのタイトルと日付のキーとしてそれぞれ。ListView
に表示する各マップのキーの名前を配置する文字列の配列。new String[] { "title", "date" }
を文字列の引数として、およびnew int[] { Android.R.id.text1, Android.R.id.text2 }
この引数として。大まかなコード例、アイデアを提供するだけです:
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);
ドキュメントには、「マップには各行のデータが含まれ、fromパラメーターで指定されたすべてのエントリを含める必要がある」と記載されているため、タイトルと日付の両方が常に存在する必要があります。
これはすべて私の頭の上にあることに注意してください。実際にすべてのコードをテストしたわけではないので、途中で調整したり修正したりする必要のある奇妙なバグに遭遇する可能性が非常に高くなります。
次のようなitem_list.xmlファイルが必要です。
<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>
そして、メソッドgetviewのlistadapterで:
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;
これでうまくいくはずです!
複数のデータ項目を複数のビューにマップするため、ArrayAdapterは使用できません。代わりに SimpleAdapter を使用する必要があります。
また、メインUIスレッドでRSSフィードを取得していることに気付きました。これにより、アプリケーションの応答性が非常に低くなります。私が何を話しているのかわからない場合は、 痛みのないスレッディング の記事を読んでください(Android開発者)には必ず読んでください)。代わりに行うべきことは、 Loader を使用することです。これらは、ユーザーの状況に合わせて設計されています。API-10まで導入されませんでしたが、 サポートパッケージ 。