Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7495281
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T18:01:00+00:00 2026-05-29T18:01:00+00:00

I have an Activity, which needs its orientation to be locked with setRequestedOrientation(screenOrientation); But

  • 0

I have an Activity, which needs its orientation to be locked with

setRequestedOrientation(screenOrientation);

But I want to get orientation updates, so that I can do adjustments to the UI(imagine HTC camera app, when only button’s icons change orientation).
So I found this class. It delivers orientation values, between 0 and 360. Ho do I filter this values, i.e. perfect interval [a, b], and if a<x<b then orientation is landscape or portrait? Compute mean? Any hints?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T18:01:03+00:00Added an answer on May 29, 2026 at 6:01 pm

    It sounds like you are needing code to only react when the device’s orientation has changed to one of the 4 normal orientations instead of at every angle. This will filter the orientation to only values of 0, 90, 180 and 270 degrees:

    OrientationEventListener myOrientationEventListener;
        int iOrientation;
    
        myOrientationEventListener = new OrientationEventListener(this, SensorManager.SENSOR_DELAY_NORMAL)
        {
    
            @Override
            public void onOrientationChanged(int iAngle)
            {                         // 0  15 30 45 60 75, 90 105, 120, 135, 150, 165, 180, 195, 210, 225, 240, 255, 270, 285, 300, 315, 330, 345
                final int iLookup[] = {0,   0, 0,90,90, 90,90, 90,  90, 180, 180, 180, 180, 180, 180, 270, 270, 270, 270, 270, 270, 0, 0, 0}; // 15-degree increments 
                if (iAngle != ORIENTATION_UNKNOWN)
                {
                    int iNewOrientation = iLookup[iAngle / 15];
                    if (iOrientation != iNewOrientation)
                    {
                        iOrientation = iNewOrientation;
                        // take action on new orientation here
                    }
                }
            }
        };
    
        // To display if orientation detection will work and enable it
        if (myOrientationEventListener.canDetectOrientation())
        {
        Toast.makeText(this, "Can DetectOrientation", Toast.LENGTH_LONG).show();
            myOrientationEventListener.enable();
        }
        else
        {
        Toast.makeText(this, "Can't DetectOrientation", Toast.LENGTH_LONG).show();
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have three tabs that each has its own Activity. The tabs are as
I have an activity, which when starting (onCreate or onStart) needs to manipulate some
I have an activity which handles configuration changes. But now i have to change
I have an activity which shows some List entries. When I click on a
I have created an activity which sends a number of notifications to status bar.
I have a couple of tables which are used to log user activity for
Say if I have a locationManager(LM) object in activity A, which is my main
I have an activity that has a TabHost containing a set of TabSpecs each
I have an activity that contains several user editable items (an EditText field, RatingBar,
I need to have a class with one activity that is performed once per

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.