假设您有一个应用A打开另一个应用B(例如地图),不受您控制<(即它是一个预先存在的应用)。所以现在应用程序A在后台。假设发生了一个事件,并且A希望在应用程序B的UI上显示浮动对话框(同时让应用程序B的活动在其后面可见)。这可能吗?
(通常的答案是显示通知,但这不是大众市场应用,我们正在努力直接引起用户的注意。)
目前,我试图做这样的事情:
// This code runs in a class other than app A's main activity,
// and the "activity" variable used here is a reference to that activity.
Intent intent = new Intent(activity, NotificationDialogActivity.class);
// EDIT: I'm not exactly sure whether NEW_TASK helps here or not
// so I removed it, but the REORDER_TO_FRONT would ideally cause
// app A's dialog activity to be moved to the front of the back stack?
intent.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
// The "msg" variable here is just some data being passed to the dialog activity
// I included it here only so it is clear that there is a purpose.
intent.putExtra(NotificationDialogActivity.EXTRA_MSG, msg);
activity.startActivity(intent);
但是当我这样做时会发生的事情是,在原始应用A活动和背堆上的应用B活动之间插入。
答案 0 :(得分:4)
为了让对话活动显示在另一个应用程序上,必须做一些事情:
@android:style/Theme.Translucent.NoTitleBar
)Window.setLayout
)FLAG_ACTIVITY_NEW_TASK
)FLAG_ACTIVITY_REORDER_TO_FRONT
)Dialog
类的类在启动对话活动的代码中:
Intent intent = new Intent(baseActivity, DialogActivity.class);
// NEW_TASK allows the new dialog activity to be separate from the existing activity.
// REORDER_TO_FRONT causes the dialog activity to be moved to the front,
// if it's already running.
// Without the NEW_TASK flag, the existing "base" activity
// would be moved to the front as well.
intent.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT | Intent.FLAG_ACTIVITY_NEW_TASK);
intent.putExtra(DialogActivity.EXTRA_SOME_PARAM, someParamValue);
// The activity must be started from the application context.
// I'm not sure why exactly.
baseActivity.getApplicationContext().startActivity(intent);
在上文中,baseActivity
是对应用程序主要活动的引用。
对话活动可能有助于launchMode
singleInstance
,确保它永远不会在其任务中累积其他活动,但这可能是不必要的。 @android:style/Theme.Translucent.NoTitleBar
主题允许其下方的活动显示。
<activity
android:name=".DialogActivity"
android:launchMode="singleInstance"
android:theme="@android:style/Theme.Translucent.NoTitleBar">
</activity>
对于对话活动本身,可能需要调整其窗口以确保它不会填满整个屏幕:
getWindow().setLayout(
ViewGroup.LayoutParams.MATCH_PARENT,
ViewGroup.LayoutParams.WRAP_CONTENT
);
同样,在对话框活动的布局XML中,可能还需要:
android:layout_width="fill_parent"
android:layout_height="wrap_content"
对于对话框本身,您可以做很多事情,但一种解决方案是扩展Dialog
类:
class DialogActivity extends Dialog { ... }
要显示活动对话框,只需创建Dialog的新实例并调用其show()
方法。
答案 1 :(得分:0)
是的,这是可能的。您需要执行自定义操作和广播接收器以注册自定义事件。
您的应用A触发自定义操作,您在应用B中编写并注册到该操作的广播接收器可以检测到事件。然后你需要在接收器中显示对话框。
这可能很棘手。祝你好运
答案 2 :(得分:0)
我认为这个问题已由Nanda Gopal回答。但是不在这里,让我尝试一下。
我从https://blog.mindorks.com/how-to-create-a-transparent-activity-in-android
获得了解决方案哪个是
<style name="Theme.AppCompat.Transparent.NoActionBar" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:backgroundDimEnabled">false</item>
</style>
但是,由于我在没有Compat或Support库的手机上使用APK Builder,以下对我有用:
<style name="Test" parent="@android:style/Theme.Dialog">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:backgroundDimEnabled">false</item>
</style>