2011-07-31 51 views
0

我在這裏是新的。我正在製作一個應用程序,它必須在短信上顯示警報。 我不認爲我理解我如何。可以調用另一個類的函數,當函數具有「this」屬性時。smsRecevicer類中的警報問題

,但此行不工作:

AlertDialog.Builder(this).setTitle("asd").setMessa ge(str).setNegativeButton("Annuller", null).setPositiveButton("Bekræft", null).show(); 

我不知道這是否是因爲這個類來看,我的背景還是什麼?

這是類:

package net.sms; 

import android.app.AlertDialog; 
import android.content.BroadcastReceiver; 
import android.content.Context; 
import android.content.Intent; 
import android.os.Bundle; 
import android.telephony.gsm.SmsMessage; 
import android.widget.Toast; 

public class SmsReceiver extends BroadcastReceiver 
{ 

    @Override 
    public void onReceive(Context context, Intent intent) 
    { 
     //---get the SMS message passed in--- 
     Bundle bundle = intent.getExtras();   
     SmsMessage[] msgs = null; 
     String str = "";    
     if (bundle != null) 
     { 
      //---retrieve the SMS message received--- 
      Object[] pdus = (Object[]) bundle.get("pdus"); 
      msgs = new SmsMessage[pdus.length];    
      for (int i=0; i<msgs.length; i++){ 
       msgs[i] = SmsMessage.createFromPdu((byte[])pdus[i]);     
       str += "SMS from " + msgs[i].getOriginatingAddress();      
       str += " :"; 
       str += msgs[i].getMessageBody().toString(); 
       str += "\n";   
      } 
      AlertDialog.Builder alt_bld = new AlertDialog.Builder(context); 
      alt_bld.setTitle("aaa"); 
      alt_bld.show(); 
      //new AlertDialog.Builder(this).setTitle("asd").setMessage(str).setNegativeButton("Annuller", null).setPositiveButton("Bekræft", null).show(); 
      //---display the new SMS message--- 
      Toast.makeText(context, str, Toast.LENGTH_SHORT).show(); 
     }       
    } 
} 

回答

0

我不認爲您可以在廣播接收器中啓動警報。您可以通過啓動看起來像警報的活動來獲得類似的效果。 注意:Google不建議從後臺服務或接收方開始活動。

的Manifest.xml

<activity android:name="AlertActivity" android:theme="@android:style/Theme.Dialog" /> 

alert_activity.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="fill_parent"> 
<LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content"> 

    <Button android:id="@+id/positiveButton" android:layout_weight="1" 
     android:layout_width="wrap_content" android:layout_height="wrap_content" 
     android:text="Annuller" /> 

    <Button android:id="@+id/negativeButton" android:layout_weight="1" 
     android:layout_width="wrap_content" android:layout_height="wrap_content" 
     android:text="Bekraft" /> 

</LinearLayout> 
</LinearLayout> 

SmsReceiver.java

context.startActivity(new Intent(context, AlertActivity.class)); 
0

接收機不喜歡警報對話框。您可以使用通知或吐司。