Created FeedItemlistActivity
This commit is contained in:
parent
667762faf4
commit
ff0be9b737
|
@ -25,6 +25,7 @@
|
||||||
</activity>
|
</activity>
|
||||||
<activity android:name="de.podfetcher.activity.FeedlistActivity"/>
|
<activity android:name="de.podfetcher.activity.FeedlistActivity"/>
|
||||||
<activity android:name="de.podfetcher.activity.AddFeedActivity"/>
|
<activity android:name="de.podfetcher.activity.AddFeedActivity"/>
|
||||||
|
<activity android:name="de.podfetcher.activity.FeedItemlistActivity"/>
|
||||||
|
|
||||||
<service android:enabled="true" android:name="de.podfetcher.service.DownloadService" />
|
<service android:enabled="true" android:name="de.podfetcher.service.DownloadService" />
|
||||||
</application>
|
</application>
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
package de.podfetcher.activity;
|
||||||
|
|
||||||
|
import com.actionbarsherlock.app.SherlockListActivity;
|
||||||
|
|
||||||
|
/** Displays a List of FeedItems */
|
||||||
|
public class FeedItemlistActivity extends SherlockListActivity {
|
||||||
|
private static final String TAG = "FeedItemlistActivity";
|
||||||
|
|
||||||
|
/** The feed which the activity displays */
|
||||||
|
private Feed feed;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onCreate(Bundle savedInstanceState) {
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onListItemClick(ListView l, View v, int position, long id) {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue