作为一个简单的测试,我试图有一个广播接收器,它将通过 Toast 消息通知用户在 android 中单击了一个硬件按钮。
我在清单文件中创建了一个名为 .TestReceiver 的接收器标签,它监听 Action_CALL_BUTTON 以在用户单击绿色 SEND 按钮时收到通知:
<receiver android:name=".TestReceiver" >
<intent-filter>
<action android:name="android.intent.action.ACTION_CALL_BUTTON" />
</intent-filter>
</receiver>
接下来,我创建了扩展 BroadcastReceiver 并创建 Toast 的 TestReceiver 类。当我单击呼叫按钮时,我看不到 Toast 消息,但我在一个活动上对其进行了测试,它显示了。我在这里想念什么?
package com.example.helloandroid;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.widget.Toast;
public class TestReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method stub
CharSequence text = "Hello toast!";
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context, text, duration);
toast.show();
}
}
谢谢