I do not get a full description of the getDescription () method, where am I mistaken.?
RSSReader.java
public class RSSReader extends Activity implements OnItemClickListener { public final String RSSFEEDOFCHOICE = "someurloffeedburner?format=xml"; public final String tag = "RSSReader"; private RSSFeed feed = null; public void onCreate(Bundle icicle) { super.onCreate(icicle); setContentView(R.layout.main);
Showdescription.xml File
<?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:autoLink="all" android:text="story goes here ...." android:id="@+id/storybox" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Back" android:id="@+id/back" /> </LinearLayout>
I get the first two or three lines of description by this code from feedburners URL. So my code for these two files will help me understand what changes I should make to get a full description.
source share