Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8256659
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T01:55:36+00:00 2026-06-08T01:55:36+00:00

I am having a problem with my app crashing after I press the button

  • 0

I am having a problem with my app crashing after I press the button that activates my xml where my radio buttons are located.

The logcat says my error is java.lang.nullpointerexception.

I have included my logcat, java where error occurred, and manifest.

I originally had problems with my RadioButtons where the program allowed me to have them both checked and impossible to uncheck. When I changed around the coding to include the onCheckChange listener the app now crashes whenever I press a RadioButton.

07-17 18:09:37.067: W/dalvikvm(329): threadid=1: thread exiting with uncaught exception (group=0x40015560)
07-17 18:09:37.077: E/AndroidRuntime(329): FATAL EXCEPTION: main
07-17 18:09:37.077: E/AndroidRuntime(329): java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.example.com.proto1/com.example.com.proto1.Voiceprompt}: java.lang.ClassNotFoundException: com.example.com.proto1.Voiceprompt in loader dalvik.system.PathClassLoader[/data/app/com.example.com.proto1-2.apk]
07-17 18:09:37.077: E/AndroidRuntime(329):  at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1569)
07-17 18:09:37.077: E/AndroidRuntime(329):  at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1663)
07-17 18:09:37.077: E/AndroidRuntime(329):  at android.app.ActivityThread.access$1500(ActivityThread.java:117)
07-17 18:09:37.077: E/AndroidRuntime(329):  at android.app.ActivityThread$H.handleMessage(ActivityThread.java:931)
07-17 18:09:37.077: E/AndroidRuntime(329):  at android.os.Handler.dispatchMessage(Handler.java:99)
07-17 18:09:37.077: E/AndroidRuntime(329):  at android.os.Looper.loop(Looper.java:123)
07-17 18:09:37.077: E/AndroidRuntime(329):  at android.app.ActivityThread.main(ActivityThread.java:3683)
07-17 18:09:37.077: E/AndroidRuntime(329):  at java.lang.reflect.Method.invokeNative(Native Method)
07-17 18:09:37.077: E/AndroidRuntime(329):  at java.lang.reflect.Method.invoke(Method.java:507)
07-17 18:09:37.077: E/AndroidRuntime(329):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
07-17 18:09:37.077: E/AndroidRuntime(329):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
07-17 18:09:37.077: E/AndroidRuntime(329):  at dalvik.system.NativeStart.main(Native Method)
07-17 18:09:37.077: E/AndroidRuntime(329): Caused by: java.lang.ClassNotFoundException: com.example.com.proto1.Voiceprompt in loader dalvik.system.PathClassLoader[/data/app/com.example.com.proto1-2.apk]
07-17 18:09:37.077: E/AndroidRuntime(329):  at dalvik.system.PathClassLoader.findClass(PathClassLoader.java:240)
07-17 18:09:37.077: E/AndroidRuntime(329):  at java.lang.ClassLoader.loadClass(ClassLoader.java:551)
07-17 18:09:37.077: E/AndroidRuntime(329):  at java.lang.ClassLoader.loadClass(ClassLoader.java:511)
07-17 18:09:37.077: E/AndroidRuntime(329):  at android.app.Instrumentation.newActivity(Instrumentation.java:1021)
07-17 18:09:37.077: E/AndroidRuntime(329):  at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1561)
07-17 18:09:37.077: E/AndroidRuntime(329):  ... 11 more


    package com.example.com.proto1;

import android.app.Activity;
import android.content.Intent;
import android.media.MediaPlayer;
import android.os.Bundle;
import android.view.View;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.RadioGroup.OnCheckedChangeListener;

public class VoicePrompts extends Activity implements OnCheckedChangeListener {

    RadioButton on, off, onc, offc;

    // Button Sound
    MediaPlayer buttonSound1 = MediaPlayer.create(VoicePrompts.this, R.raw.vpo);
    MediaPlayer buttonSound2 = MediaPlayer
            .create(VoicePrompts.this, R.raw.vpof);
    MediaPlayer buttonSound3 = MediaPlayer
            .create(VoicePrompts.this, R.raw.vpoc);
    MediaPlayer buttonSound4 = MediaPlayer.create(VoicePrompts.this,
            R.raw.vpofc);

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.voiceprompts);

        // Setting up the button references
        on = (RadioButton) findViewById(R.id.vbutton1);
        off = (RadioButton) findViewById(R.id.vbutton2);
        onc = (RadioButton) findViewById(R.id.vbutton1);
        offc = (RadioButton) findViewById(R.id.vbutton2);

        buttonSound1 = MediaPlayer.create(VoicePrompts.this, R.raw.vpo);
        buttonSound2 = MediaPlayer.create(VoicePrompts.this, R.raw.vpof);
        buttonSound3 = MediaPlayer.create(VoicePrompts.this, R.raw.vpoc);
        buttonSound4 = MediaPlayer.create(VoicePrompts.this, R.raw.vpofc);
    }

    public void onCheckedChanged(RadioGroup arg0, int checkedId) {
        // TODO Auto-generated method stub
        switch (checkedId) {
        case R.id.vbutton1:
            on.setOnLongClickListener(new View.OnLongClickListener() {

                public boolean onLongClick(View v) {
                    // TODO Auto-generated method stub
                    try {
                        buttonSound1.prepare();
                        buttonSound1.start();
                        startActivity(new Intent("android.intent.action.VPON"));

                    } catch (Exception e) {

                    }
                    return false;
                }
            });

            onc.setOnClickListener(new View.OnClickListener() {

                public void onClick(View v) {
                    // TODO Auto-generated method stub
                    try {
                        buttonSound3.prepare();
                        buttonSound3.start();
                        startActivity(new Intent("android.intent.action.VPON"));
                    } catch (Exception e) {

                    }
                    ;

                }
            });

            break;
        case R.id.vbutton2:

            off.setOnLongClickListener(new View.OnLongClickListener() {

                public boolean onLongClick(View v) {
                    // TODO Auto-generated method stub
                    try {
                        buttonSound2.prepare();
                        buttonSound2.start();
                        startActivity(new Intent("android.intent.action.VPOFF"));
                    } catch (Exception e) {

                    }
                    ;
                    return false;

                }
            });

            offc.setOnClickListener(new View.OnClickListener() {

                public void onClick(View v) {
                    // TODO Auto-generated method stub
                    try {
                        buttonSound4.prepare();
                        buttonSound4.start();
                        startActivity(new Intent("android.intent.action.VPOFF"));
                    } catch (Exception e) {

                    }
                    ;

                }
            });

            break;
        }

    }

}




<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.com.proto1"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="15" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".mainj"
            android:label="@string/title_activity_mainj" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".menu"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MENU" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name=".Infoactive"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.INFOSCREEN" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name=".VoicePrompts"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.VOICEPROMPTS" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name=".VPon"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.VPON" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name=".VPoff"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.VPOFF" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
    </application>

</manifest>





package com.example.com.proto1;

import android.app.Activity;
import android.content.Intent;
import android.media.MediaPlayer;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class menu extends Activity {

    @Override
    protected void onCreate(Bundle aboutmenu) {
        // TODO Auto-generated method stub
        super.onCreate(aboutmenu);
        setContentView(R.layout.mainx);

        // Button Sound
        final MediaPlayer buttonSound = MediaPlayer.create(menu.this,
                R.raw.button_click);

        // Setting up the button references
        Button info = (Button) findViewById(R.id.aboutbutton);
        Button voice = (Button) findViewById(R.id.voicebutton);

        info.setOnClickListener(new View.OnClickListener() {

            public void onClick(View v) {
                // TODO Auto-generated method stub
                buttonSound.start();
                startActivity(new Intent("android.intent.action.INFOSCREEN"));

            }
        });

        voice.setOnClickListener(new View.OnClickListener() {

            public void onClick(View v) {
                // TODO Auto-generated method stub
                buttonSound.start();
                Intent voiceIntent = new Intent("android.intent.action.VOICEPROMPTS");
                startActivity(voiceIntent);
            }
        });

    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T01:55:37+00:00Added an answer on June 8, 2026 at 1:55 am

    I think you have two Activity with name VoicePrompts and VoicePrompt. You declared VoicePrompts in menifest file. But your are calling VoicePrompt.

    EDIT According to your new Problem

    MediaPlayer buttonSound1,buttonSound2,buttonSound3,buttonSound4 ;

    and init in onCreate

    like

     @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.voiceprompts);
    
        // Setting up the button references
        on = (RadioButton) findViewById(R.id.vbutton1);
        off = (RadioButton) findViewById(R.id.vbutton2);
        onc = (RadioButton) findViewById(R.id.vbutton1);
        offc = (RadioButton) findViewById(R.id.vbutton2);
        buttonSound1 = MediaPlayer.create(VoicePrompts.this,
            R.raw.vpo);
        buttonSound2 = MediaPlayer.create(VoicePrompts.this,
            R.raw.vpof);
        buttonSound3 = MediaPlayer.create(VoicePrompts.this,
            R.raw.vpoc);
        buttonSound4 = MediaPlayer.create(VoicePrompts.this,
            R.raw.vpofc);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

am having problem, my app doesn't seem to check the radio button based from
Im having a problem with my app that causes it to crash when no
I'm having a problem closing my app after NSSavePanel has been used... If I
Ok, so i am having a problem, where i developed an app that uses
I am having some problems with an app that keeps crashing intermittently. Code below
I am having a strange problem while making app requests. I understand that when
I'm having a problem with my iPhone app crashing when I scroll down on
i'm having problem to deal with charset in ruby on rails app, specificially in
I have adopted an iOS app and am having problem asynchronous requests. We have
having a problem with a new ASP NET app and ASPNETDB Installed on existing

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.