我正在编写一个程序,在收到短信时提供快速回复对话框。
但是,我得到了意想不到的结果。当我收到一条短信时,会出现相应的对话框活动,显示正确的电话号码和消息,但是它后面有第二个活动是我程序中的“默认”活动(这是我启动应用程序时打开的)< / p>
我不希望第二项活动出现。快速回复活动应该在用户以前做过的任何事情之上自己出现。
'浮动'活动:
public class quickReply extends Activity {
String mNumber, mMessage;
TextView mMainText;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mMainText = (TextView)findViewById(R.id.mainText);
try{
Intent i = getIntent();
Bundle extras = i.getExtras();
mNumber = extras.getString("theNumber");
mMessage = extras.getString("theMessage");
this.setTitle("Message From:" + mNumber);
mMainText.setText(mMessage);
} catch(Exception e) {
mMainText.setText(e.getMessage());
}
}
}
对onReceive()
内部活动的调用 Intent i = new Intent(context, quickReply.class);
i.putExtra("theNumber", mNumber);
i.putExtra("theMessage", mMessage);
i.setFlags(
Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(i);
The Manifest:
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".quickReply"
android:label="@string/app_name"
android:theme="@android:style/Theme.Dialog"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name=".SmsReceiver">
<intent-filter>
<action android:name=
"android.provider.Telephony.SMS_RECEIVED" />
</intent-filter>
</receiver>
</application>
答案 0 :(得分:3)
我发现有效的唯一方法,在清单中的活动定义中:
android:launchMode="singleInstance"
但是一旦关闭对话框,你必须重新启动你的主/默认活动。注意:您将失去上次启动时的所有状态,因此这不是一个理想的解决方案。
更新:
您也可以通过以下方式执行此操作:
Intent.FLAG_ACTIVITY_CLEAR_TASK
所以这就是我的所作所为:
当用户关闭对话框时,再次使用在onCreate()中处理的额外意图(IS_BACK)启动main并调用:
moveTaskToBack(真);
这将使对话框保持在顶部,而主要保留在堆栈的后面。
答案 1 :(得分:0)
您应该将活动的任务亲和力设置为与主要活动不同的内容。这将把它与主要活动分开,它将作为一项单独的任务进行跟踪:
<activity android:name=".quickReply"
android:label="@string/app_name"
android:theme="@android:style/Theme.Dialog"
android:launchMode="singleTask"
android:taskAffinity="quickReply"
>