Forum Discussion

🚨 This forum is archived and read-only. To submit a forum post, please visit our new Developer Forum. 🚨
VENDETTAangel's avatar
VENDETTAangel
Honored Guest
3 years ago

Android Studios - 2D App - I can't resize window. How can i change size Window

I have native app on android. I am working in the Android Studion ans use Android SDK. I don't connect oculuse quest native library. I have two problem. First - I can't change windows size on Oculus. I want the user to be able to drag a corner of the application and change the window size. I learned information about AndroidManifest

Manifest ->

<uses-feature android:glEsVersion="0x00030001" />
<application
...
android:resizeableActivity="true"
...
>
<meta-data android:name="com.oculus.intent.category.VR" android:value="vr_only"/>
<meta-data android:name="com.oculus.supportedDevices" android:value="quest|quest2|cambria"/>
<
activity
....
android:resizeableActivity="true"
android:screenOrientation="landscape>
....

Theme ->

 <style ..... parent="Theme.Material3.DayNight.NoActionBar">
<item name="android:windowFullscreen">true</item>
<item name="android:windowNoTitle">true</item>
</style>

My application runs on the device, but I can't increase the window size. I would like the user to be able to resize the window as he wants. Has anyone encountered and solved this problem?

1 Reply

  • For example, a simple application - Hello World! Is it possible to run this application so that I can resize the window?