1
0
mirror of https://github.com/balkian/Carrousel-Android.git synced 2024-12-22 13:08:14 +00:00

Iteracion 2: Servicio añadido

This commit is contained in:
Fernando Herrera 2011-03-09 22:55:28 +01:00
parent c99db6ca0a
commit 699f7e153c
2 changed files with 16 additions and 0 deletions

View File

@ -13,6 +13,7 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name="Results"></service>
</application>
</manifest>

View File

@ -0,0 +1,15 @@
package com.onirica.carrousel;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
public class Results extends Service {
@Override
public IBinder onBind(Intent arg0) {
// TODO Auto-generated method stub
return null;
}
}