blob: 3e985531dc956664a7cb97c6cdca0135b33f8150 [file] [log] [blame]
/*
* Copyright (C) 2016 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License
*/
package android.server.wm.app;
import static android.app.WindowConfiguration.WINDOWING_MODE_PINNED;
import static android.content.Intent.FLAG_ACTIVITY_CLEAR_TASK;
import static android.content.Intent.FLAG_ACTIVITY_MULTIPLE_TASK;
import static android.content.Intent.FLAG_ACTIVITY_NEW_TASK;
import android.app.Activity;
import android.app.ActivityOptions;
import android.content.Intent;
import android.graphics.Rect;
public class AlwaysFocusablePipActivity extends PipActivity {
static void launchAlwaysFocusablePipActivity(Activity caller, boolean newTask) {
launchAlwaysFocusablePipActivity(caller, newTask, false /* multiTask */);
}
static void launchAlwaysFocusablePipActivity(Activity caller, boolean newTask,
boolean multiTask) {
final Intent intent = new Intent(caller, AlwaysFocusablePipActivity.class);
intent.setFlags(0);
if (newTask) {
intent.addFlags(FLAG_ACTIVITY_NEW_TASK);
}
if (multiTask) {
intent.addFlags(FLAG_ACTIVITY_MULTIPLE_TASK);
} else {
intent.addFlags(FLAG_ACTIVITY_CLEAR_TASK);
}
final ActivityOptions options = ActivityOptions.makeBasic();
options.setLaunchBounds(new Rect(0, 0, 500, 500));
options.setLaunchWindowingMode(WINDOWING_MODE_PINNED);
caller.startActivity(intent, options.toBundle());
}
}