summaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorTakanori Nakano <takanori.x.nakano@sonymobile.com>2016-11-04 14:58:06 +0900
committerYoshiaki Naka <yoshiaki.naka@sonymobile.com>2016-11-04 15:04:09 +0900
commitdb80b30934c9db6938d2e81a5305db94a29fb5bb (patch)
tree467d8167223ea1fcd9be25df21b5ba9fe1ad3dcd /AndroidManifest.xml
parentea5113094bb4ba3283488b5fd8a5cafb3bb61471 (diff)
downloadStk-db80b30934c9db6938d2e81a5305db94a29fb5bb.tar.gz
Specify the task affinity for ToneDialog
As there is no task affinity specified for ToneDialog, only ToneDialog can be separated from the other activities in the STK application. For example, we can see StkMenuActivity and ToneDialog as separated tasks in the split-screen mode of the multi-window feature. That should not be a designed behavior. It must be better to apply the same task affinity as the other ones. Bug: 32652551 Test: manual - confirmed that ToneDialog is not separated from others. Change-Id: I0f5cc21807a61de320e2b15f3f6a79c4f3f651df
Diffstat (limited to 'AndroidManifest.xml')
-rwxr-xr-xAndroidManifest.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index ff487ab..d3a41ee 100755
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -92,7 +92,8 @@
<activity android:name="ToneDialog"
android:exported="false"
- android:theme="@android:style/Theme.DeviceDefault.Dialog">
+ android:theme="@android:style/Theme.DeviceDefault.Dialog"
+ android:taskAffinity="android.task.stk.StkLauncherActivity">
</activity>
<receiver android:name="com.android.stk.StkCmdReceiver">