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 930691
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T20:22:42+00:00 2026-05-15T20:22:42+00:00

Eclipse redlines width, height, width, height in the doSomething() arg list in the callback.

  • 0

Eclipse redlines width, height, width, height in the doSomething() arg list in the callback. Little red X in the left margin; says:

Multiple markers at this line
 - Cannot refer to a non-final variable height inside an inner class defined in a different 
  method
 - Cannot refer to a non-final variable width inside an inner class defined in a different 
  method
 - Cannot refer to a non-final variable width inside an inner class defined in a different 
  method
 - Cannot refer to a non-final variable height inside an inner class defined in a different 
  method

Obviously I don’t want to waste cycles by repeating getWindowManager().getDefaultDisplay() to obtain those values repeatedly from inside the holder callback or from inside the doSomething().

This entire snip is inside of one class.

Thanks for any help.

  ... 

  Display display = getWindowManager().getDefaultDisplay();   
  int width = display.getWidth();  
  int height = display.getHeight(); 

  ... 

  final GL10 gl = (GL10) eglContext.getGL();  
  final Handler handler = new Handler();  
  SurfaceHolder holder = view.getHolder(); 
  holder.setType(SurfaceHolder.SURFACE_TYPE_GPU);  

  int w = 0; 
  int h = 0; 
  int x = 0; 
  int y = 0; 

  int b[] = new int[w * (y + h)]; 
  int bt[] = new int[w * h]; 
  IntBuffer ib = IntBuffer.wrap(b); 
  ib.position(0); 
  gl.glReadPixels(x, 0, w, y + h, GL10.GL_RGBA,GL10.GL_UNSIGNED_BYTE,ib); 

  ...

  holder.addCallback(new Callback() { 
    private EGLSurface surface;  
    private Runnable painter;  

    @Override  
    public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {  
      painter = new Runnable() {  
        @Override  
        public void run() {  
          doSomething(width, height, width, height, gl); 
        }  
      };  
      handler.post(painter);  
    }  
  }); //Callback ends. 
} 

private void doSomething(int x, int y, int w, int h, GL10 gl) {  
  // do something  
}
  • 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-15T20:22:43+00:00Added an answer on May 15, 2026 at 8:22 pm

    Put the final keyword on the width and height parameters of the surfaceChanged(…) method to make them accessible to the run() method in the painter Runnable and get rid of the compiler error.

    @Override  
    public void surfaceChanged(SurfaceHolder holder, int format, final int width, final int height) {  
      painter = new Runnable() {  
        @Override  
        public void run() {  
          doSomething(width, height, width, height, gl); 
        }  
      };  
      handler.post(painter);  
    }
    

    This is avoidable in Java 8 because it would consider width and height to be effectively final.

    Taking the Java 8 thought to it’s logical extension with Lambda Expressions yields more concise code:

    @Override  
    public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {  
      painter = () -> {  
          doSomething(width, height, width, height, gl);
      };  
      handler.post(painter);  
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Okay, so eclipse says my code has errors in it, but there are no
Eclipse has that +/- on the left to expand and collapse blocks of code.
Eclipse complains about my catch statement below public class NaturalLanguageMultiply { public class WrongMultiplierException
Eclipse is showing the following errors in my Spring's applicationContext.xml : cvc-complex-type.2.4.c: The matching
Eclipse project, I have Subversion set to ignore the bin directory, and also within
Eclipse was working fine just a day ago. But today, when I click the
Eclipse Helios periodically starts running a job which displays Computing additional info. During this
Eclipse is complaining about my Android project saying all my references to resources are
Eclipse and MyEclipse create new Java files with an extra blank line after the
Eclipse was running fine last night, but this morning I tried starting it up

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.