0% found this document useful (0 votes)
43 views5 pages

Android 14

Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
0% found this document useful (0 votes)
43 views5 pages

Android 14

Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1/ 5

Practical No.

14
Aim: Develop a program to implement service.
XML Code:
<?xml version="1.0" encoding="ut-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/
android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical"
tools:context=".MainActivity">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Start Service"
android:id="@+id/btnStart"/>
<BuƩon
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Stop Service"
android:id="@+id/btnStop"/>
</LinearLayout>

Java Code:
package com.example.service_example;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.BuƩon;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
Button btnStart,btnStop;
@Override
protected void onCreate(Bundle
savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
btnStart = findViewById(R.id.btnStart);
btnStop = findViewById(R.id.btnStop);
btnStart.setOnClickListener(new
View.OnClickListener() {
@Override
public void onClick(View v) {
startService(new Intent(MainActivity.this,
MusicService.class));
Toast.makeText(MainActivity.this, "Service
Started", Toast.LENGTH_SHORT).show();
}
});
btnStop.setOnClickListener(new
View.OnClickListener() {
@Override
public void onClick(View v) {
stopService(new Intent(MainActivity.this,
MusicService.class));
Toast.makeText(MainActivity.this, "Service
stop", Toast.LENGTH_SHORT).show(); }
}); }}
Music Service Java:-
package com.example.service_example;
import android.app.Service;
import android.content.Intent;
import android.media.MediaPlayer;
import android.os.IBinder;
import android.provider.Seƫngs;
import androidx.annotation.Nullable;
public class MusicService extends Service {
MediaPlayer mediaPlayer;
@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public int onStartCommand(Intent intent, int flags,
int startId) {
mediaPlayer = MediaPlayer.create(this,
Seƫngs.System.DEFAULT_RINGTONE_URI);
mediaPlayer.setLooping(true);
mediaPlayer.start();
return START_STICKY;
}
@Override
public void onDestroy() {
mediaPlayer.stop();
super.onDestroy();
}
}
Output:

You might also like