mirror of
https://github.com/balkian/Carrousel-Android.git
synced 2024-12-22 21:18:13 +00:00
Iteracion 2: Servicio añadido
This commit is contained in:
parent
c99db6ca0a
commit
699f7e153c
@ -13,6 +13,7 @@
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<service android:name="Results"></service>
|
||||
|
||||
</application>
|
||||
</manifest>
|
15
src/com/onirica/carrousel/Results.java
Normal file
15
src/com/onirica/carrousel/Results.java
Normal 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;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user