Wednesday, December 26, 2012

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/AVvXsEgfdQA1Evzn4RNcY1T7EqLVRKYjncu40eUsla13dMeYQcpUV5Yeghc9DJF_BM7J4wB7QamUZHbu5E1qfvyWq2Nehpdvk9DiQmmwQc-E4pF7ZZklK9C_3rDAXOktUnlscgQy_IYVha92AyA/s480/silent_mode_demo1.png

https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiKAPkWcitB12ae_RI1bQOUN-QFRr0EEex7r0IIAUxcN82wPOVqzAOP5JlmPU4mYzOvyGDI3SwDp9WwROPepaCWIEkh4_3Y9NUOChusGo7riVFgxZJSzdi1Ydtanuhe59MKRDomOGr_SwU/s480/silent_mode_demo2.png

No comments:

Post a Comment

Popular Posts