我知道这篇文章已经很老了,但也许我的回答会帮助下一个可能会在这里找到自己的人,尤其是因为没有公认的答案。
如前所述,这本书充满了错误,可以让像我这样的 android 和 java 新手有点疯狂。经过几天的谷歌搜索和阅读,我已经成功地完成了这项工作,所以就这样吧。
我不确定 OP 使用的是哪个版本的 android,但我认为书中代码的问题之一是 Honeycomb (3.x) 及更高版本的添加,不允许在 UI 上进行潜在的昂贵操作线。阅读更多相关信息:
http://www.androiddesignpatterns.com/2012/06/app-force-close-honeycomb-ics.html
对于这个问题,您需要使用 ASyncTask 在单独的线程上运行可能代价高昂的操作。
请注意,在捕获异常的代码中,我只是将异常错误打印到 titleView TextView 以便更容易找出问题所在。
运行完AsyncTask中的代码后,再更新显示。
startElement 方法似乎也不正确,因为如果您在 XML 编辑器中查看 RSS 提要详细信息,则图像所需的 URL 位于“附件”下。
我的代码如下,有任何问题请留言;请注意,我也是一个初学者,所以很可能有更好的方法来做到这一点。
package neill.nasadailyimage;
import java.io.*;
import java.net.HttpURLConnection;
import java.net.URL;
import javax.xml.parsers.*;
import org.xml.sax.*;
import org.xml.sax.helpers.DefaultHandler;
import android.support.v7.app.ActionBarActivity;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.AsyncTask;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.ImageView;
import android.widget.TextView;
public class NasaDailyImage extends ActionBarActivity
{
IotdHandler handler = new IotdHandler(); // Create handler
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_nasa_daily_image);
handler.processFeed();
}
public void ResetDisplay() {
String title = handler.getTitle();
String date = handler.getDate();
String description = handler.getDescription().toString();
resetDisplay(title, date, handler.getImage(), description);
}
private void resetDisplay(String title, String date, Bitmap image, String description)
{
try {
TextView titleView = (TextView) findViewById(R.id.imageTitle);
titleView.setText(title);
TextView dateView = (TextView)findViewById(R.id.imageDate);
dateView.setText(date);
ImageView imageView = (ImageView)findViewById(R.id.imageDisplay);
imageView.setImageBitmap(image);
TextView descriptionView = (TextView)findViewById(R.id.imageDescription);
descriptionView.setText(description);
} catch (Exception e) {
TextView titleView = (TextView) findViewById(R.id.imageTitle);
titleView.setText(e.toString());
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu)
{
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.nasa_daily_image, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item)
{
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
public class IotdHandler extends DefaultHandler
{
private String url = "http://www.nasa.gov/rss/image_of_the_day.rss";
private boolean inTitle = false;
private boolean inDescription = false;
private boolean inItem = false;
private boolean inDate = false;
private Bitmap image = null;
private String title = null;
private String date = null;
private StringBuffer description = new StringBuffer();
public XMLReader reader = null;
private Bitmap getBitmap(String url)
{
try
{
HttpURLConnection connection = (HttpURLConnection) new URL(url).openConnection();
connection.setDoInput(true);
connection.connect();
InputStream input = connection.getInputStream();
Bitmap bitmap = BitmapFactory.decodeStream(input);
input.close();
return bitmap;
}
catch (IOException ioe)
{
TextView titleView = (TextView) findViewById(R.id.imageTitle);
titleView.setText(ioe.toString());
return null;
}
}
public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException
{
if (localName.equals("enclosure")) {
image = getBitmap(attributes.getValue("url").toString());
}
if (localName.startsWith("item")) { inItem = true; }
else
{
if (inItem) {
if (localName.equals("title")) { inTitle = true; }
else { inTitle = false; }
if (localName.equals("description")) { inDescription = true; }
else { inDescription = false; }
if (localName.equals("pubDate")) { inDate = true; }
else { inDate = false; }
}
}
}
public void characters(char ch[], int start, int length)
{
String chars = (new String(ch).substring(start, start + length));
if (inTitle && title == null) { title = chars; }
if (inDescription) { description.append(chars); }
if (inDate && date == null) { date = chars; }
}
private class ProcessFeedTask extends AsyncTask<String, Void, InputStream>
{
@Override
protected InputStream doInBackground(String... params)
{
String url = params[0];
InputStream inputStream = null;
try
{
inputStream = new URL(url).openStream();
reader.parse(new InputSource(inputStream));
}
catch (Exception e)
{
TextView titleView = (TextView) findViewById(R.id.imageTitle);
titleView.setText(e.toString());
}
return inputStream;
}
@Override
protected void onPostExecute(InputStream result)
{
super.onPostExecute(result);
if (result != null) {
ResetDisplay();
}
}
}
public void processFeed()
{
try
{
SAXParserFactory factory = SAXParserFactory.newInstance();
SAXParser parser = factory.newSAXParser();
reader = parser.getXMLReader();
reader.setContentHandler(this);
new ProcessFeedTask().execute(url);
}
catch (Exception e)
{
TextView titleView = (TextView) findViewById(R.id.imageTitle);
titleView.setText(e.toString());
}
}
public String getTitle() { return title ; }
public String getDate() { return date ; }
public String getDescription() { return description.toString() ; }
public Bitmap getImage() { return image ; }
}
}
如果您在模拟器中运行代码,请稍等片刻,我认为模拟器的互联网速度相当慢。
希望对那里的人有所帮助。
干杯。
尼尔