blob: f7c60fc73cb32341685be5e488bb9fe492a5c8b9 [file] [log] [blame]
/**
* Copyright (c) 2018 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 com.google.android.test.activityview;
import android.app.Activity;
import android.app.ActivityView;
import android.content.Intent;
import android.os.Bundle;
import android.os.Parcelable;
import android.widget.Button;
public class ActivityViewActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_view_activity);
final ActivityView activityView = findViewById(R.id.activity_view);
final Button launchButton = findViewById(R.id.activity_launch_button);
launchButton.setOnClickListener(v -> {
final Intent intent = new Intent(this, ActivityViewTestActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_MULTIPLE_TASK);
activityView.startActivity(intent);
});
final Button pickActivityLaunchButton = findViewById(R.id.activity_pick_launch_button);
pickActivityLaunchButton.setOnClickListener(v -> {
final Intent intent = Intent.makeMainActivity(null);
final Intent chooser = Intent.createChooser(intent,
"Pick an app to launch in ActivityView");
chooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Parcelable[] {
new Intent(Intent.ACTION_MAIN)
.addCategory("com.android.internal.category.PLATLOGO")
});
if (intent.resolveActivity(getPackageManager()) != null) {
chooser.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
| Intent.FLAG_ACTIVITY_MULTIPLE_TASK);
activityView.startActivity(chooser);
}
});
}
}