OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RssItem
(Results
1 - 5
of
5
) sorted by null
/development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssItem.java
22
public class
RssItem
{
29
public
RssItem
(String url, String title){
MyRssReader3.java
36
private ArrayList<
RssItem
> mFeeds;
53
mAdap = new RssDataAdapter<
RssItem
>(this, R.layout.list_element, mFeeds);
138
RssItem
newIt = new
RssItem
(
163
RssItem
item = (
RssItem
)this.getItem(position);
176
private ArrayList<
RssItem
> initializeList(){
177
ArrayList<
RssItem
> list = new ArrayList<
RssItem
>();
178
list.add(new
RssItem
("http://www.sciam.com/xml/sciam.xml", "Scientific American"))
[
all
...]
MyRssReader2.java
34
private ArrayList<
RssItem
> mFeeds = null;
56
RssDataAdapter<
RssItem
> adap = new RssDataAdapter<
RssItem
>(this, R.layout.add_item, mFeeds);
155
RssItem
item = (
RssItem
)this.getItem(position);
172
private ArrayList<
RssItem
> initializeList(){
173
ArrayList<
RssItem
> list = new ArrayList<
RssItem
>();
174
list.add(new
RssItem
("http://www.sciam.com/xml/sciam.xml", "Scientific American"));
175
list.add(new
RssItem
("http://newsrss.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml", "BBC"))
[
all
...]
/development/samples/RSSReader/src/com/example/android/rssreader/
RssItem.java
23
public class
RssItem
{
28
public
RssItem
() {
34
public
RssItem
(CharSequence title, CharSequence link, CharSequence description) {
74
// return new
RssItem
(
RssReader.java
64
*
RssItem
in the browser.
128
List<
RssItem
> items = new ArrayList<
RssItem
>();
155
private class RSSListAdapter extends ArrayAdapter<
RssItem
> {
158
public RSSListAdapter(Context context, List<
RssItem
> objects) {
167
* text2 TextViews. We pull data from the
RssItem
and set it into the
185
RssItem
item = this.getItem(position);
216
RssItem
item = mAdapter.getItem(position);
228
List<
RssItem
> items = new ArrayList<
RssItem
>();
[
all
...]
Completed in 69 milliseconds