Re: [android-porting] Re: How do I set the build for Landscape mode only?

2021-03-10 Thread Developer 420
Does any one have configuration to make the build for landscape only mode in AOSP 10? Thanks In Advance On Monday, 30 November 2020 at 05:44:14 UTC+5:30 hou...@yahoo.com wrote: > 안녕하세요. > > landscape feature 설정을 해보는 건 어떤가요? > > android/frameworks/native/data/etc/handheld_core_hardware.xml > >

Re: [android-porting] Re: How do I set the build for Landscape mode only?

2020-11-29 Thread 'CHANG YONGHO' via android-porting
안녕하세요. landscape feature 설정을 해보는 건 어떤가요? android/frameworks/native/data/etc/handheld_core_hardware.xml ignore "android.hardware.screen.portrait" 감사합니다. 2020년 9월 3일 목요일 오전 8시 5분 18초 UTC+9에 rashadro...@gmail.com님이 작성: > Thank so much for the I was trying to upgrade and had not been able >

Re: [android-porting] Re: How do I set the build for Landscape mode only?

2020-09-02 Thread rashad roberson
Thank so much for the I was trying to upgrade and had not been able succeeded On Wed, Sep 2, 2020, 7:42 AM Dave McLaughlin wrote: > I have Android 7.1 and I implemented all of the changes you indicated, > although you do indicate P or higher I thought I would try it. During the > boot, the boot

[android-porting] Re: How do I set the build for Landscape mode only?

2020-09-02 Thread Dave McLaughlin
I have Android 7.1 and I implemented all of the changes you indicated, although you do indicate P or higher I thought I would try it. During the boot, the boot logo was still in portrait mode due to the fact that the default orientation of the LCD display is portrait mode (the timings are for

[android-porting] Re: How do I set the build for Landscape mode only?

2020-07-07 Thread Trần Kha
Hi Dave, Please refer below steps to force orientation to landscape: 1. Make sure only landscape permission is available on your build environment Only add android.hardware.screen.landscape.xml to your makefile by below command: PRODUCT_COPY_FILES +=

[android-porting] Re: How do I set the build for Landscape mode only?

2020-06-24 Thread Dave McLaughlin
Yeah, that works for each application but I was referring to the platform build itself not offering a portrait orientation as an option, similar to what it does when running on HDMI displays. I was given a solution that works but sadly, the running app is given a simulated portrait view

[android-porting] Re: How do I set the build for Landscape mode only?

2020-06-23 Thread Budhdi Prakash Sharma
To get an Android application to display in landscape mode only (to lock it in landscape mode), add this line to your Activity definition in the AndroidManifest.xml file: android:screenOrientation="landscape" For example, I’m writing an Android football game right now, and this is the