Created FeedItemlistActivity

This commit is contained in:
Daniel Oeh 2012-04-11 21:18:15 +02:00
parent 667762faf4
commit ff0be9b737
2 changed files with 22 additions and 0 deletions

View File

@ -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>

View File

@ -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) {
}
}