0

このデモを実行するためにさまざまなことを試みてきましたが、正しく実行することができませんでした。

これは私のManifest.xmlです

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.messagekeeper"
android:versionCode="1"
android:versionName="1.0" >

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

<uses-permission android:name="android.permission.RECEIVE_SMS" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >

    <activity
        android:name="com.example.messagekeeper.MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>


    <receiver android:name=".SmsReciever"> 
        <intent-filter> 
            <action android:name="android.provider.Telephony.SMS_RECEIVED" /> 
        </intent-filter> 
    </receiver> 

</application>

</manifest>

これは私のMainActivityクラスです(何もしません):

package com.example.messagekeeper;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;

public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.activity_main, menu);
    return true;
}

}

そしてこれはSmsRecieverクラスです:

package com.example.messagekeeper;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.telephony.SmsMessage;
import android.util.Log;

class SmsReciever extends BroadcastReceiver{
@Override
  public void onReceive(Context context, Intent intent){
    Object[] pdus=(Object[])intent.getExtras().get("pdus");
    SmsMessage shortMessage=SmsMessage.createFromPdu((byte[]) pdus[0]);

        Log.d("SMSReceiver","SMS message sender: "+
               shortMessage.getOriginatingAddress());
        Log.d("SMSReceiver","SMS message text: "+
               shortMessage.getDisplayMessageBody());


  }

}

メッセージを受け取ったら、アプリに表示させたいです。この状況では、このコードを使用してエミュレーターでアプリを実行し、あるエミュレーターから別のエミュレーターにメッセージを送信すると、アプリがクラッシュし、次のエラーが発生します:http: //puu.sh/1yZub

4

1 に答える 1

1

コードをそのままコピーした場合はpublic、最初にキーワードが欠落している可能性があります。

変化するclass SmsReciever extends BroadcastReceiver{

public class SmsReciever extends BroadcastReceiver{

于 2012-12-09T16:08:29.337 に答える