我正在尝试开发一个 android 应用程序,它将在 ChromeBook 的中心启动。但即使我将重力设置为中心,它总是在左上角发射。但是,如果我将重力设置为任何其他位置而不是中心,它就可以正常工作。例如,如果我将重力设置为“top|end”,它将在右上角启动。
这是我的清单文件
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.app">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:resizeableActivity="true"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.AppTheme">
<activity
android:name=".MainActivity"
android:configChanges="screenSize|smallestScreenSize|orientation|screenLayout">
<meta-data
android:name="WindowManagerPreference:SuppressWindowControlNavigationButton"
android:value="true" />
<meta-data
android:name="WindowManagerPreference:FreeformWindowSize"
android:value="[tablet]" />
<meta-data
android:name="WindowManagerPreference:FreeformWindowOrientation"
android:value="[landscape]" />
<layout
android:defaultWidth="720dp"
android:defaultHeight="480dp"
android:minWidth="450dp"
android:minHeight="300dp"
android:gravity="center"/>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>