Android开发RSS Feed不起作用

时间:2013-07-03 17:09:17

标签: java android xml compiler-errors rss

我正在阅读Head First Android开发手册,这是一本很棒的书,但我在第二章(第2章),我无法使这个RSS应用程序正常工作。所以,基本上,这不应该是最终版本,但到目前为止应该做的只是将应用程序显示为空。听起来很愚蠢,但它不应该显示任何东西,因为我必须为应用程序设置一些权限,以便允许应用程序连接到互联网并下载RSS信息。我正在为这个应用程序使用4个不同的文件(但显然,项目中有更多文件)。

我制作了一个Google文档文件夹,这样每个人都可以看到并下载它。我用过Eclipse。

请帮帮我这是一本傻瓜书,但在找到解决方案之前我不能转到下一章。

再一次,这不应该是最终版本,app应该被视为空,因为我需要为它设置一些权限。它给了我错误,请帮帮我!!!

我遇到的主要问题是这一行,它说“iotdHandler无法解决”。我不知道为什么这本书说我不应该把这个词大写,我猜我应该喜欢“IotdHandler”,但它仍然给我错误。我跟着书中的一切。救救我!

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    IotdHandler handler = new IotdHandler();
    handler.processFeed();
    resetDisplay(iotdHandler.getTitle(), iotdHandler.getDate(), iotdHandler.getImage(), iotdHandler.getDescription());
}

此代码来自mainActivity.java文件

请帮助我,这让我发疯了!!!

由于

4 个答案:

答案 0 :(得分:0)

嘿,我觉得你的痛苦我在那一章上花了两天时间来找出错误的解决方案。 首先,这不是这本书的完成版本,它被错误所困扰,所以不要心疼并记住这一点。

强文 以下是解决问题的方法。

在mainActivity.java上

package com.example.nasadailyimage;

import android.iotdHandler;
import android.os.Bundle;
import android.app.Activity;
import android.graphics.Bitmap;
import android.view.Menu;
import android.widget.ImageView;
import android.widget.TextView;

公共类MainActivity扩展了Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    IotdHandler handler = new IotdHandler(); //create handler
    handler.processFeed(); //start parsing
    resetDisplay(iotdHandler.getTitle(), iotdHandler.getDate(),
            iotdHandler.getImage(), iotdHandler.getDescription());
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

private void resetDisplay(String title, String date, String imageUrl, String description)
{
    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);
    Bitmap image = null;
    imageView.setImageBitmap(image);

    TextView descriptionView = (TextView)findViewById(R.id.imageDescription);
    descriptionView.setText(description);

}

}

第二:您需要在src文件夹中创建一个名为 IotdHandler.java 的文件。 在此文件中,您需要创建以下Getter方法

package android;

public class iotdHandler {

public static String getDate() {
    // TODO Auto-generated method stub
    return null;
}
public static String getTitle() {
    // TODO Auto-generated method stub
    return null;
}
public static String getImage() {
    // TODO Auto-generated method stub
    return null;
}
public static String getDescription() {
    // TODO Auto-generated method stub
    return null;
}

}

我最好的

答案 1 :(得分:0)

主要问题在于,第一位作者在对象命名方面有点不连贯。

  1. 未使用声明的对象。 (IotdHandler made, iotdHandler 使用。)java和因此 android 区分大小写。
  2. 有时signature parameter of methods与此不同 声明的方法。喜欢它应该是(字符串,字符串,位图, StringBuffer ),但调用者使用( String,String,String,String )。
  3. 我建议您阅读 Wrox或Apress安卓系列书籍进行编程练习,然后选择HeadFirst coding ideas to have robust code

答案 2 :(得分:0)

我知道这篇文章相当陈旧,但也许我的答案会帮助下一个可能会发现自己的人,特别是因为没有接受的答案。

如前所述,这本书充满了错误,可以让像我这样的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位于" enclosure"。

我的代码如下,如有任何问题,请发表评论;并且请注意我也是一个初学者,所以很可能有更好的方法来做到这一点。

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 ; }
    }
}

如果你在模拟器中运行代码,给它一段时间工作,我认为模拟器的互联网速度相当慢。

希望能帮到那里的人。

干杯。

尼尔

答案 3 :(得分:-1)

您必须在resetDisplay()

中调用mainactivity.java方法的位置进行以下更正
resetDisplay(handler.getTitle(), handler.getDate(), handler.getImage(), handler.getDescription());