Monday, December 12, 2011

Android - Switching Silent Mode to Normal Mode Example


SILENT MODE DEMO

SOURCE CODE [main.xml] is

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:orientation="vertical"
android:layout_width="fill_parent"
                android:layout_height="fill_parent">

                <TextView android:id="@+id/txt1"
android:layout_width="fill_parent"
                                android:layout_height="wrap_content" />

                <Button android:id="@+id/silent"
android:layout_width="fill_parent"
                                android:layout_height="wrap_content"
android:text="Switch to Silent Mode" />

                <Button android:id="@+id/normal"
android:layout_width="fill_parent"
                                android:layout_height="wrap_content"
android:text="Switch to Normal Mode" />
</LinearLayout>

SOURCE CODE [SilentMode.java] is

package com.SilentModeDemo;

import android.app.Activity;
import android.content.Context;
import android.media.AudioManager;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;

public class SilentMode extends Activity
{
               
                public void onCreate(Bundle savedInstanceState)
{

                                super.onCreate(savedInstanceState);
                                setContentView(R.layout.main);

                                final TextView txt = (TextView) findViewById(R.id.txt1);

                                Button silent = (Button) findViewById(R.id.silent);
                                Button normal = (Button) findViewById(R.id.normal);

                                final AudioManager mode = (AudioManager) this
                                                                .getSystemService(Context.AUDIO_SERVICE);

                                silent.setOnClickListener(new View.OnClickListener()
{
                                                public void onClick(View v)
{
                                                                txt.setText("The Mobile in Silent Mode");
                                                                mode.setRingerMode(AudioManager.RINGER_MODE_SILENT);
                                                                Toast.makeText(getBaseContext(), "Silent Mode Activated",
 Toast.LENGTH_LONG).show();
                                                }
                                });

                                normal.setOnClickListener(new View.OnClickListener()
{
                                                public void onClick(View v)
{
                                                                txt.setText("The Mobile in Normal Mode");
                                                                mode.setRingerMode(AudioManager.RINGER_MODE_NORMAL);
                                                                Toast.makeText(getBaseContext(), "Normal Mode Activated",
                                                                                Toast.LENGTH_LONG).show();
                                                }
                                });

                }
}


//*******************************************************************//
// Source provided by Anish Kumar (Android Developer[Enrichware Systems]) //
//*******************************************************************//

The OUTPUT will be

 https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiF0Zw-z2HqfcDEYpOVVWm-NvWV9I1jhy8_kZsYeL-LMXwJEXYI8kt8hPFhISw9wWb3etljvRl0QGHAtejTMK8k4DDu6u327OStDb7_W1TLqHz6nrbQpNyqOU1Yi98EZjHbWtkvCIEe3y4/s480/silent_mode_demo1.png

https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh8BUaSxrWQr2jNTdHO3gtTgmn85oDbKJDA3bL2eiZ3GyCfj-km8dFP6ndauUpWDvyz4hrOF7Y0Vy8DIDcAPxX9SPkjKi3xC73cI-XDWZiJA5l33zRNRq8NtIclrdaDSceGvOVBtcqYwA4/s480/silent_mode_demo2.png