Community
Participate
Working Groups
Created attachment 238508 [details] formatter profile I came across : return (context.getResources().getConfiguration().screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK) >= Configuration.SCREENLAYOUT_SIZE_XLARGE; I have all items except assignments as "wrap where necessary" - this beast won't wrap. I guess it is because it is in a return statement - but maybe something else at work here ?
Nothing to do with the return statement Removing the parenthesis makes it the int & int wrap (does not compile) replacing the >= with || makes Configuration.SCREENLAYOUT_SIZE_XLARGE also wrap (does not compile) So the problem is with >= and the parenthesis
This problem no longer occurs after the formatter redesign. Wrapping aroung >= operator is for another feature request. *** This bug has been marked as a duplicate of bug 303519 ***