0

我正在创建一个程序,该程序应该在单击按钮后显示 RSS 提要。

我在布局中有一个主类、一个屏幕 1 和屏幕 2 以及一个主 xml 文件和屏幕 1 和屏幕 2。

现在我之前尝试过使用主要的 xml 和类作为 RSS Feed 并且效果很好

但是,现在当我尝试将 Screen1 (screen1) 设置为显示提要的位置时,我只是得到一个黑屏。

我想知道为什么会这样,正如我通过 Screen1 类告诉我要链接到 screen1 xml 文件一样。

主类:

import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;

import android.widget.Button;


public class SImpleRssReader2Activity extends Activity {





@Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);


        Button videoNext = (Button) findViewById(R.id.videoButton) ; 
        videoNext.setOnClickListener(new OnClickListener() {
            public void onClick(View v) {
              setContentView(R.layout.screen2);



                //  Intent i = new Intent();
               // i.setClassName("rahul.application.WunApp", "rahul.application.WunApp.screen1");
               // startActivity(i);
            }
        });

        Button newsNext = (Button) findViewById(R.id.newsButton);
        newsNext.setOnClickListener(new OnClickListener() {
            public void onClick(View v) {
              setContentView(R.layout.screen1);

                //  Intent i = new Intent();
               // i.setClassName("rahul.application.WunApp", "rahul.application.WunApp.screen1");
               // startActivity(i);
            }
        });




}
}

屏幕一:

 import java.io.IOException;
    import java.io.InputStream;
    import java.net.MalformedURLException;
    import java.net.URL;
    import java.util.ArrayList;
    import java.util.List;

    import org.xmlpull.v1.XmlPullParser;
    import org.xmlpull.v1.XmlPullParserException;
    import org.xmlpull.v1.XmlPullParserFactory;


    import android.app.ListActivity;
    import android.content.Intent;
    import android.net.Uri;
    import android.os.Bundle;
    import android.view.View;

    import android.widget.ArrayAdapter;

    import android.widget.ListView;

    public class Screen1 extends ListActivity {
        /** Called when the activity is first created. */
       List<String> headlines;
       List<String> links;





    @Override
    protected void onListItemClick(ListView l, View v, int position, long id) {
       Uri uri = Uri.parse((String) links.get(position));
       Intent intent = new Intent(Intent.ACTION_VIEW, uri);
       startActivity(intent);
    }

    @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.screen1);
         // Initializing instance variables
            headlines = new ArrayList<String>();
            links = new ArrayList<String>();



            try {
                URL url = new URL("http://news.google.com/news?ned=us&topic=h&output=rss");

                XmlPullParserFactory factory = XmlPullParserFactory.newInstance();
                factory.setNamespaceAware(false);
                XmlPullParser xpp = factory.newPullParser();

                    // We will get the XML from an input stream
                xpp.setInput(getInputStream(url), "UTF_8");

                    /* We will parse the XML content looking for the "<title>" tag which appears inside the "<item>" tag.
                     * However, we should take in consideration that the rss feed name also is enclosed in a "<title>" tag.
                     * As we know, every feed begins with these lines: "<channel><title>Feed_Name</title>...."
                     * so we should skip the "<title>" tag which is a child of "<channel>" tag,
                     * and take in consideration only "<title>" tag which is a child of "<item>"
                     *
                     * In order to achieve this, we will make use of a boolean variable.
                     */
                boolean insideItem = false;

                    // Returns the type of current event: START_TAG, END_TAG, etc..
                int eventType = xpp.getEventType();
                while (eventType != XmlPullParser.END_DOCUMENT) {
                    if (eventType == XmlPullParser.START_TAG) {

                        if (xpp.getName().equalsIgnoreCase("item")) {
                            insideItem = true;
                        } else if (xpp.getName().equalsIgnoreCase("title")) {
                            if (insideItem)
                                headlines.add(xpp.nextText()); //extract the headline
                        } else if (xpp.getName().equalsIgnoreCase("link")) {
                            if (insideItem)
                                links.add(xpp.nextText()); //extract the link of article
                        }
                    }else if(eventType==XmlPullParser.END_TAG && xpp.getName().equalsIgnoreCase("item")){
                        insideItem=false;
                    }

                    eventType = xpp.next(); //move to next element
                }

            } catch (MalformedURLException e) {
                e.printStackTrace();
            } catch (XmlPullParserException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            }

            // Binding data
            ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
                    android.R.layout.simple_list_item_1, headlines);

            setListAdapter(adapter);



        }
    public InputStream getInputStream(URL url) {
           try {
               return url.openConnection().getInputStream();
           } catch (IOException e) {
               return null;
             }
        }

主要的xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >



    <EditText
        android:id="@+id/editText1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ems="10"
        android:text="@string/welcome" >

        <requestFocus />

    </EditText>


    <TextView
        android:id="@+id/textView5"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />


    <TextView
        android:id="@+id/textView6"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />


    <TextView
        android:id="@+id/textView7"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >






        <Button
            android:id="@+id/newsButton"
            android:layout_width="152dp"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_centerHorizontal="true"
            android:text="@string/button1" />

    </RelativeLayout>


    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />


    <TextView
        android:id="@+id/textView4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >


        <TextView
            android:id="@+id/textView2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true" />

    </RelativeLayout>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >
    </RelativeLayout>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >





        <Button
            android:id="@+id/videoButton"
            android:layout_width="156dp"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_centerHorizontal="true"
            android:text="@string/button3" />

    </RelativeLayout>

</LinearLayout>

屏幕1 xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >



<ListView
android:id="@+android:id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
</ListView>

</LinearLayout>

总结一下:当我只有主类和 xml 时它工作,但现在我链接到一个新类和 xml,它不起作用。为什么?

4

2 回答 2

0

第 1 点 - 您不应该在 UI 线程中进行与网络相关的工作 使用 Asynctask 或带有处理程序的线程

第 2 点-您在 main.xml 中有各种视图,但在 screen1 xml 中只有列表视图,您可能在 screen1 中没有数据敌人列表

第 3 点 - 使用“@android:id/list”作为 ListActivity 的 ID

<ListView
  android:id="@android:id/list"
  android:layout_width="match_parent"
  android:layout_height="wrap_content" >
</ListView>
于 2012-06-29T19:34:03.840 回答
0

这与在您的代码中被注释掉的这些有什么关系吗

  //Intent i = new Intent();
           // i.setClassName("rahul.application.WunApp",      "rahul.application.WunApp.screen1");
           // startActivity(i);     

您是否确保在清单中放入了应用程序块

   <application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
<activity android:name=".SImpleRssReader2Activity" /> // your class names
<activity android:name=".screen1" />
<activity android:name=".screen2" />

使用意图时通常需要这些。

侧边栏:真的很有趣,你在做我正在做的同样的事情。我需要一个 RSS 提要,并尝试了相同的代码。根本不适合我,不知道你是怎么让它工作的,但很好。我为我的使用了另一段代码。我自己并没有真正习惯于像 java 这样的高级语言,我认为一旦你开始使用 C 语言,它就会变得更容易。

于 2013-07-19T11:08:59.457 回答