Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hello i have problem with Sending emails. LogCat:

08-10 16:24:27.892: E/AndroidRuntime(337): Uncaught handler: thread main exiting due to uncaught exception
08-10 16:24:27.903: E/AndroidRuntime(337): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.mini.battery/com.mini.battery.Email}: java.lang.NullPointerException
08-10 16:24:27.903: E/AndroidRuntime(337):  at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2496)
08-10 16:24:27.903: E/AndroidRuntime(337):  at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2512)
08-10 16:24:27.903: E/AndroidRuntime(337):  at android.app.ActivityThread.access$2200(ActivityThread.java:119)
08-10 16:24:27.903: E/AndroidRuntime(337):  at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1863)
08-10 16:24:27.903: E/AndroidRuntime(337):  at android.os.Handler.dispatchMessage(Handler.java:99)
08-10 16:24:27.903: E/AndroidRuntime(337):  at android.os.Looper.loop(Looper.java:123)
08-10 16:24:27.903: E/AndroidRuntime(337):  at android.app.ActivityThread.main(ActivityThread.java:4363)
08-10 16:24:27.903: E/AndroidRuntime(337):  at java.lang.reflect.Method.invokeNative(Native Method)
08-10 16:24:27.903: E/AndroidRuntime(337):  at java.lang.reflect.Method.invoke(Method.java:521)
08-10 16:24:27.903: E/AndroidRuntime(337):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:860)
08-10 16:24:27.903: E/AndroidRuntime(337):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:618)
08-10 16:24:27.903: E/AndroidRuntime(337):  at dalvik.system.NativeStart.main(Native Method)
08-10 16:24:27.903: E/AndroidRuntime(337): Caused by: java.lang.NullPointerException
08-10 16:24:27.903: E/AndroidRuntime(337):  at com.mini.battery.Email.onCreate(Email.java:28)
08-10 16:24:27.903: E/AndroidRuntime(337):  at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
08-10 16:24:27.903: E/AndroidRuntime(337):  at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2459)

Code:

public class Email extends Activity {
        Button buttonSend;
        EditText textTo;
        EditText textSubject;
        EditText textMessage;

        @Override
        public void onCreate(Bundle savedInstanceState) {
                super.onCreate(savedInstanceState);
                setContentView(R.layout.main);

                buttonSend = (Button) findViewById(R.id.buttonSend);
                textTo = (EditText) findViewById(R.id.editTextTo);
                textSubject = (EditText) findViewById(R.id.editTextSubject);
                textMessage = (EditText) findViewById(R.id.editTextMessage);

                buttonSend.setOnClickListener(new OnClickListener() {

                        public void onClick(View v) {

                          String to = textTo.getText().toString();
                          String subject = textSubject.getText().toString();
                          String message = textMessage.getText().toString();

                          Intent email = new Intent(Intent.ACTION_SEND);
                          email.putExtra(Intent.EXTRA_EMAIL, new String[]{ to});
                          email.putExtra(Intent.EXTRA_SUBJECT, subject);
                          email.putExtra(Intent.EXTRA_TEXT, message);

                          email.setType("message/rfc822");

                          startActivity(Intent.createChooser(email, "Choose an Email client :"));
                        }
                });
        }
    }
share|improve this question
what is line 28 in Email.java? – M Mohsin Naeem Aug 10 '12 at 16:41
buttonSend.setOnClickListener(new OnClickListener() { – Silesia Aug 10 '12 at 16:42
then buttonSend is not in main.xml. I guess. – M Mohsin Naeem Aug 10 '12 at 16:42
<Button android:id="@+id/buttonSend" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Send" /> – Silesia Aug 10 '12 at 16:44
Have you checked for the text widgets that are non-null? – t0mm13b Aug 10 '12 at 16:48
show 6 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.