Merge "Fix IME being shifted when the app setRequestedOrientation" into tm-qpr-dev
This commit is contained in:
@@ -2387,7 +2387,11 @@ class WindowState extends WindowContainer<WindowState> implements WindowManagerP
|
|||||||
// IME parent may failed to attach to the app during rotating the screen.
|
// IME parent may failed to attach to the app during rotating the screen.
|
||||||
// See DisplayContent#shouldImeAttachedToApp, DisplayContent#isImeControlledByApp
|
// See DisplayContent#shouldImeAttachedToApp, DisplayContent#isImeControlledByApp
|
||||||
if (windowConfigChanged) {
|
if (windowConfigChanged) {
|
||||||
getDisplayContent().updateImeControlTarget();
|
// If the window was the IME layering target, updates the IME surface parent in case
|
||||||
|
// the IME surface may be wrongly positioned when the window configuration affects the
|
||||||
|
// IME surface association. (e.g. Attach IME surface on the display instead of the
|
||||||
|
// app when the app bounds being letterboxed.)
|
||||||
|
mDisplayContent.updateImeControlTarget(isImeLayeringTarget() /* updateImeParent */);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1138,7 +1138,9 @@ public class WindowStateTests extends WindowTestsBase {
|
|||||||
spyOn(app.getDisplayContent());
|
spyOn(app.getDisplayContent());
|
||||||
app.mActivityRecord.getRootTask().setWindowingMode(WINDOWING_MODE_FULLSCREEN);
|
app.mActivityRecord.getRootTask().setWindowingMode(WINDOWING_MODE_FULLSCREEN);
|
||||||
|
|
||||||
verify(app.getDisplayContent()).updateImeControlTarget();
|
// Expect updateImeParent will be invoked when the configuration of the IME control
|
||||||
|
// target has changed.
|
||||||
|
verify(app.getDisplayContent()).updateImeControlTarget(eq(true) /* updateImeParent */);
|
||||||
assertEquals(mAppWindow, mDisplayContent.getImeTarget(IME_TARGET_CONTROL).getWindow());
|
assertEquals(mAppWindow, mDisplayContent.getImeTarget(IME_TARGET_CONTROL).getWindow());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -113,4 +113,18 @@ class ImeAppAutoFocusHelper @JvmOverloads constructor(
|
|||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun toggleFixPortraitOrientation(wmHelper: WindowManagerStateHelper) {
|
||||||
|
val button = uiDevice.wait(Until.findObject(By.res(getPackage(),
|
||||||
|
"toggle_fixed_portrait_btn")), FIND_TIMEOUT)
|
||||||
|
require(button != null) {
|
||||||
|
"Button not found, this usually happens when the device " +
|
||||||
|
"was left in an unknown state (e.g. Screen turned off)"
|
||||||
|
}
|
||||||
|
button.click()
|
||||||
|
mInstrumentation.waitForIdleSync()
|
||||||
|
// Ensure app relaunching transition finish and the IME has shown
|
||||||
|
wmHelper.waitForAppTransitionIdle()
|
||||||
|
wmHelper.waitImeShown()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,129 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2023 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.android.server.wm.flicker.ime
|
||||||
|
|
||||||
|
import android.app.Instrumentation
|
||||||
|
import android.platform.test.annotations.Postsubmit
|
||||||
|
import android.view.Surface
|
||||||
|
import android.view.WindowManagerPolicyConstants
|
||||||
|
import androidx.test.filters.RequiresDevice
|
||||||
|
import androidx.test.platform.app.InstrumentationRegistry
|
||||||
|
import com.android.server.wm.flicker.FlickerBuilderProvider
|
||||||
|
import com.android.server.wm.flicker.FlickerParametersRunnerFactory
|
||||||
|
import com.android.server.wm.flicker.FlickerTestParameter
|
||||||
|
import com.android.server.wm.flicker.FlickerTestParameterFactory
|
||||||
|
import com.android.server.wm.flicker.annotation.Group2
|
||||||
|
import com.android.server.wm.flicker.dsl.FlickerBuilder
|
||||||
|
import com.android.server.wm.flicker.helpers.ImeAppAutoFocusHelper
|
||||||
|
import com.android.server.wm.flicker.helpers.WindowUtils
|
||||||
|
import com.android.server.wm.flicker.traces.region.RegionSubject
|
||||||
|
import com.android.server.wm.traces.common.FlickerComponentName
|
||||||
|
import org.junit.FixMethodOrder
|
||||||
|
import org.junit.Test
|
||||||
|
import org.junit.runner.RunWith
|
||||||
|
import org.junit.runners.MethodSorters
|
||||||
|
import org.junit.runners.Parameterized
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test IME window shown on the app with fixing portrait orientation.
|
||||||
|
* To run this test: `atest FlickerTests:OpenImeWindowToFixedPortraitAppTest`
|
||||||
|
*/
|
||||||
|
@RequiresDevice
|
||||||
|
@RunWith(Parameterized::class)
|
||||||
|
@Parameterized.UseParametersRunnerFactory(FlickerParametersRunnerFactory::class)
|
||||||
|
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
|
||||||
|
@Group2
|
||||||
|
class OpenImeWindowToFixedPortraitAppTest (private val testSpec: FlickerTestParameter) {
|
||||||
|
private val instrumentation: Instrumentation = InstrumentationRegistry.getInstrumentation()
|
||||||
|
private val testApp = ImeAppAutoFocusHelper(instrumentation, testSpec.startRotation)
|
||||||
|
|
||||||
|
@FlickerBuilderProvider
|
||||||
|
fun buildFlicker(): FlickerBuilder {
|
||||||
|
return FlickerBuilder(instrumentation).apply {
|
||||||
|
setup {
|
||||||
|
eachRun {
|
||||||
|
testApp.launchViaIntent(wmHelper)
|
||||||
|
testApp.openIME(device, wmHelper)
|
||||||
|
// Enable letterbox when the app calls setRequestedOrientation
|
||||||
|
device.executeShellCommand("cmd window set-ignore-orientation-request true")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
transitions {
|
||||||
|
testApp.toggleFixPortraitOrientation(wmHelper)
|
||||||
|
}
|
||||||
|
teardown {
|
||||||
|
eachRun {
|
||||||
|
testApp.exit()
|
||||||
|
device.executeShellCommand("cmd window set-ignore-orientation-request false")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Postsubmit
|
||||||
|
@Test
|
||||||
|
fun imeLayerVisibleStart() {
|
||||||
|
testSpec.assertLayersStart {
|
||||||
|
this.isVisible(FlickerComponentName.IME)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Postsubmit
|
||||||
|
@Test
|
||||||
|
fun imeLayerExistsEnd() {
|
||||||
|
testSpec.assertLayersEnd {
|
||||||
|
this.isVisible(FlickerComponentName.IME)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Postsubmit
|
||||||
|
@Test
|
||||||
|
fun imeLayerVisibleRegionKeepsTheSame() {
|
||||||
|
var imeLayerVisibleRegionBeforeTransition: RegionSubject? = null
|
||||||
|
testSpec.assertLayersStart {
|
||||||
|
imeLayerVisibleRegionBeforeTransition = this.visibleRegion(FlickerComponentName.IME)
|
||||||
|
}
|
||||||
|
testSpec.assertLayersEnd {
|
||||||
|
this.visibleRegion(FlickerComponentName.IME)
|
||||||
|
.coversExactly(imeLayerVisibleRegionBeforeTransition!!.region)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Postsubmit
|
||||||
|
@Test
|
||||||
|
fun appWindowWithLetterboxCoversExactlyOnScreen() {
|
||||||
|
val displayBounds = WindowUtils.getDisplayBounds(testSpec.startRotation)
|
||||||
|
testSpec.assertLayersEnd {
|
||||||
|
this.visibleRegion(testApp.component, FlickerComponentName.LETTERBOX)
|
||||||
|
.coversExactly(displayBounds)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
@Parameterized.Parameters(name = "{0}")
|
||||||
|
@JvmStatic
|
||||||
|
fun getParams(): Collection<FlickerTestParameter> {
|
||||||
|
return FlickerTestParameterFactory.getInstance()
|
||||||
|
.getConfigNonRotationTests(
|
||||||
|
supportedRotations = listOf(Surface.ROTATION_90, Surface.ROTATION_270),
|
||||||
|
supportedNavigationModes = listOf(
|
||||||
|
WindowManagerPolicyConstants.NAV_BAR_MODE_3BUTTON_OVERLAY,
|
||||||
|
WindowManagerPolicyConstants.NAV_BAR_MODE_GESTURAL_OVERLAY
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -45,7 +45,7 @@
|
|||||||
android:theme="@style/CutoutShortEdges"
|
android:theme="@style/CutoutShortEdges"
|
||||||
android:taskAffinity="com.android.server.wm.flicker.testapp.ImeActivityAutoFocus"
|
android:taskAffinity="com.android.server.wm.flicker.testapp.ImeActivityAutoFocus"
|
||||||
android:windowSoftInputMode="stateVisible"
|
android:windowSoftInputMode="stateVisible"
|
||||||
android:configChanges="orientation|screenSize"
|
android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
|
||||||
android:label="ImeAppAutoFocus"
|
android:label="ImeAppAutoFocus"
|
||||||
android:exported="true">
|
android:exported="true">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
|
|||||||
@@ -26,14 +26,27 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:imeOptions="flagNoExtractUi"
|
android:imeOptions="flagNoExtractUi"
|
||||||
android:inputType="text"/>
|
android:inputType="text"/>
|
||||||
|
<LinearLayout
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:orientation="horizontal">
|
||||||
<Button
|
<Button
|
||||||
android:id="@+id/finish_activity_btn"
|
android:id="@+id/finish_activity_btn"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="Finish activity" />
|
android:text="Finish activity" />
|
||||||
<Button
|
<Button
|
||||||
android:id="@+id/start_dialog_themed_activity_btn"
|
android:id="@+id/start_dialog_themed_activity_btn"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="Start dialog themed activity" />
|
android:text="Dialog activity" />
|
||||||
|
<ToggleButton
|
||||||
|
android:id="@+id/toggle_fixed_portrait_btn"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:textOn="Portrait (On)"
|
||||||
|
android:textOff="Portrait (Off)"
|
||||||
|
/>
|
||||||
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|||||||
@@ -16,21 +16,29 @@
|
|||||||
|
|
||||||
package com.android.server.wm.flicker.testapp;
|
package com.android.server.wm.flicker.testapp;
|
||||||
|
|
||||||
|
import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_PORTRAIT;
|
||||||
|
import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
|
||||||
|
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.widget.Button;
|
import android.widget.Button;
|
||||||
import android.widget.EditText;
|
import android.widget.EditText;
|
||||||
|
import android.widget.ToggleButton;
|
||||||
|
|
||||||
public class ImeActivityAutoFocus extends ImeActivity {
|
public class ImeActivityAutoFocus extends ImeActivity {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onStart() {
|
protected void onStart() {
|
||||||
super.onStart();
|
super.onStart();
|
||||||
|
|
||||||
EditText editTextField = findViewById(R.id.plain_text_input);
|
|
||||||
editTextField.requestFocus();
|
|
||||||
|
|
||||||
Button startThemedActivityButton = findViewById(R.id.start_dialog_themed_activity_btn);
|
Button startThemedActivityButton = findViewById(R.id.start_dialog_themed_activity_btn);
|
||||||
startThemedActivityButton.setOnClickListener(
|
startThemedActivityButton.setOnClickListener(
|
||||||
button -> startActivity(new Intent(this, DialogThemedActivity.class)));
|
button -> startActivity(new Intent(this, DialogThemedActivity.class)));
|
||||||
|
|
||||||
|
ToggleButton toggleFixedPortraitButton = findViewById(R.id.toggle_fixed_portrait_btn);
|
||||||
|
toggleFixedPortraitButton.setOnCheckedChangeListener(
|
||||||
|
(button, isChecked) -> setRequestedOrientation(
|
||||||
|
isChecked ? SCREEN_ORIENTATION_PORTRAIT : SCREEN_ORIENTATION_UNSPECIFIED));
|
||||||
|
|
||||||
|
EditText editTextField = findViewById(R.id.plain_text_input);
|
||||||
|
editTextField.requestFocus();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user