BlackBerry Forums Support Community
              

Closed Thread
 
Thread Tools
Old 07-22-2009, 03:10 AM   #1
ComputerWolf
Knows Where the Search Button Is
 
ComputerWolf's Avatar
 
Join Date: Jul 2009
Model: 8310
PIN: N/A
Carrier: AT&T
Posts: 19
Default 4.6 Scroll Field Problem

Please Login to Remove!

I have the following code which is a custom RichTextField. Many of these are placed in a VerticalFieldManager and scrolled through. In OS 4.5 and 4.7 when one of the fields gets focus and is highlighted, the entire field is moved onto the screen. However in 4.6.0, only 2 lines of the field are brought onto the screen and the rest is hidden until the next field is moved up. I am confused because the focusRect.height variable is the correct height of the field. Is this a bug or something I am missing in my code?
Code:
class TextRichTextField extends RichTextField {
			
			public TextRichTextField(String text){
				super(text);
			}
			
			public TextRichTextField(String text, long style){
				super(text, style);
			}
			
			XYRect focusRect;
            protected void onFocus(int direction) {
                if ( focusRect == null ) {
                    focusRect = this.getExtent();
                }
                super.onFocus(direction);
                invalidate();
            }
            
            protected void unFocus() {
                super.onUnfocus();
                invalidate();
            }
            
            public boolean isSelectable() {
                return false;
            }
            
            public boolean isFocusable() {
                return true;
            }
            
            protected void drawFocus(Graphics g, boolean on) {
                if ( focusRect != null ) {
                	super.drawHighlightRegion(g, Field.HIGHLIGHT_FOCUS | Field.HIGHLIGHT_SELECT, on, 0, 0, focusRect.width, focusRect.height);
                	this.invalidate();
                	super.drawFocus(g, on);
                }
                else {
                    super.drawFocus(g, on);                    
                }
            }
            public void getFocusRect(XYRect rect) {
                if ( focusRect == null ) {
                    super.getFocusRect(rect);
                }
                else {
                    rect.x = 0;
                    rect.y = 0;
                    rect.width = focusRect.width;
                    rect.height = focusRect.height;
                }                 
            }            
            public int moveFocus(int amount, int status, int time) {
            	return amount;
            }
            
            public void paint(Graphics graphics) {
           	    graphics.setColor(Color.WHITE);
           	    super.paint(graphics);
           	  }
		}
Offline  
Old 07-22-2009, 12:43 PM   #2
ComputerWolf
Knows Where the Search Button Is
 
ComputerWolf's Avatar
 
Join Date: Jul 2009
Model: 8310
PIN: N/A
Carrier: AT&T
Posts: 19
Default

Sorry for posting again, but I didn't see any edit button. Turns out the change is happening in 4.6 and above. 4.3 and 4.5 both focus the field to be fully on the screen. It may just be something in the code that I am missing and is causing it to act differently on the newer OS's.
Offline  
Old 07-23-2009, 02:49 AM   #3
hippocamp software
Thumbs Must Hurt
 
Join Date: Feb 2009
Model: 9000
PIN: N/A
Carrier: T-Mobile
Posts: 67
Default

Use this method in the screen class, pass it your field:

Quote:
public void ensureRegionVisible(Field field,
int x,
int y,
int width,
int height)

Attempts to make your provided region visible.

Pass this method a field, and a region (extent), and this method attempts to scroll the screen to make as much of your region visible as possible.

If your region is smaller than the screen's visible extent, this method does as little work as possible to ensure the entire region appears on the screen.

If your region is larger than the screen's visible extent, this method produces the net effect of aligning the top left corner of your region with the top left corner of the screen's visible extent.
Offline  
Old 07-23-2009, 10:45 PM   #4
ComputerWolf
Knows Where the Search Button Is
 
ComputerWolf's Avatar
 
Join Date: Jul 2009
Model: 8310
PIN: N/A
Carrier: AT&T
Posts: 19
Default

Problem solved! If I extend LabelField as opposed to RichTextField all works as it should. Not that I understand why there's a difference, but it works.
Offline  
Closed Thread



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


Schneider Electric Energy Server EBX510 Server For Energy Management- picture

Schneider Electric Energy Server EBX510 Server For Energy Management-

$4350.00



FANUC Server Driver A06B-6077-H111 picture

FANUC Server Driver A06B-6077-H111

$2158.86



FANUC Server Driver A06B-6117-H211 picture

FANUC Server Driver A06B-6117-H211

$3993.99



SERVER TECHNOLOGY 4870-XLS-44 SENTRY VDC 48VOLT DC REMOTE POWER MANAGER picture

SERVER TECHNOLOGY 4870-XLS-44 SENTRY VDC 48VOLT DC REMOTE POWER MANAGER

$299.99



Server SE-SS 07020 Server Express Single Drop-In - NEW - COMPLETE - Genuine OEM picture

Server SE-SS 07020 Server Express Single Drop-In - NEW - COMPLETE - Genuine OEM

$180.00



USA Windows VPS Server / RDP Server / VPS Hosting 12GB RAM 400GB HDD 12 Month picture

USA Windows VPS Server / RDP Server / VPS Hosting 12GB RAM 400GB HDD 12 Month

$335.00







Copyright © 2004-2016 BlackBerryForums.com.
The names RIM © and BlackBerry © are registered Trademarks of BlackBerry Inc.