BlackBerry Forums Support Community
              

Closed Thread
 
Thread Tools
Old 09-13-2007, 10:52 AM   #1
Pook
New Member
 
Join Date: Sep 2007
Model: 7100
PIN: N/A
Carrier: Vodafone
Posts: 10
Question .trackwheelRoll()

Please Login to Remove!

I'm implementing TrackwheelListener and my code in .trackwheelClick() is working correctly but .trackwheelRoll() never fires.

Any ideas?
Offline  
Old 09-13-2007, 11:35 AM   #2
bemshaswing
Talking BlackBerry Encyclopedia
 
Join Date: Oct 2006
Model: 7103
Carrier: Verizon
Posts: 259
Default

if you paste your code we might be able to help
Offline  
Old 09-14-2007, 04:18 AM   #3
Pook
New Member
 
Join Date: Sep 2007
Model: 7100
PIN: N/A
Carrier: Vodafone
Posts: 10
Default

Here's the code

Code:
package com.lyon.forum;

import net.rim.device.api.system.TrackwheelListener;

import net.rim.device.api.ui.UiApplication;
import net.rim.device.api.ui.container.MainScreen;
import net.rim.device.api.ui.container.FlowFieldManager;

import net.rim.device.api.ui.Field;
import net.rim.device.api.ui.component.LabelField;
import net.rim.device.api.ui.component.Dialog;
import net.rim.device.api.ui.component.RichTextField;

public class Forum extends UiApplication implements TrackwheelListener
{
    public MainScreen _MainScreen;
    
    public static void main( String[] args )
    {
        Forum forum = new Forum();
        forum.enterEventDispatcher();
    }

    public Forum()
    {
        this._MainScreen = new MainScreen();
        this._MainScreen.addTrackwheelListener( this );
        this._MainScreen.setTitle( new LabelField( "Forum", LabelField.ELLIPSIS | LabelField.USE_ALL_WIDTH ) );
        
        this._MainScreen.add( new RichTextField( "RichTextFieldA" ) );
        this._MainScreen.add( new RichTextField( "RichTextFieldB" ) );
        this._MainScreen.add( new RichTextField( "RichTextFieldC" ) );

        this.pushScreen( this._MainScreen );
    }

    public boolean trackwheelClick( int status, int time )
    {
        Field leafField = this.getActiveScreen().getLeafFieldWithFocus();
        if ( leafField instanceof RichTextField )
        {
            RichTextField richTextField = (RichTextField) leafField;
            Dialog.alert( richTextField.getText() );
        }
        return true;
    }

    public boolean trackwheelUnclick( int status, int time )
    {
        return false;
    }

    public boolean trackwheelRoll(int amount, int status, int time)
    {
        this._MainScreen.setTitle( this.getActiveScreen().getLeafFieldWithFocus().toString() );
        return true;
    }
}
I think I'm on the case because .trackwheelRoll() IS being fired but only when you scroll past the Fields.
Offline  
Old 09-14-2007, 09:06 AM   #4
bemshaswing
Talking BlackBerry Encyclopedia
 
Join Date: Oct 2006
Model: 7103
Carrier: Verizon
Posts: 259
Default

in trackwheelRoll try returning super.trackwheelroll(amount, status, time);
Offline  
Old 09-17-2007, 05:17 AM   #5
Pook
New Member
 
Join Date: Sep 2007
Model: 7100
PIN: N/A
Carrier: Vodafone
Posts: 10
Default

Thanks anyway but that doesn't work. I got what I wanted by Extending RichTextField and overriding .onFocus().


Quote:
Originally Posted by bemshaswing View Post
in trackwheelRoll try returning super.trackwheelroll(amount, status, time);
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


1pcs used TSXMFPP128K Memory Card picture

1pcs used TSXMFPP128K Memory Card

$175.00



Lot Of 2 Samsung ESD DIMM DDR Memory Tray 25 Pcs DDR2 DDR3 DDR4 w/ Original Box picture

Lot Of 2 Samsung ESD DIMM DDR Memory Tray 25 Pcs DDR2 DDR3 DDR4 w/ Original Box

$10.50



2 - RAM DRAM Tray-Container Box For Server PC Memory DIMM Modules - Fits 100 NEW picture

2 - RAM DRAM Tray-Container Box For Server PC Memory DIMM Modules - Fits 100 NEW

$21.90



Desktop Memory Case Tray Case for PC DDR DRAM RAM DIMM Modules - 2 fits 100 New picture

Desktop Memory Case Tray Case for PC DDR DRAM RAM DIMM Modules - 2 fits 100 New

$20.50



WIFI Audio Voice Recorder Live Real-Time Audio Thru App | Charger & 32GB SD Card picture

WIFI Audio Voice Recorder Live Real-Time Audio Thru App | Charger & 32GB SD Card

$129.00



NEW RELIANCE 64K 57C413B COMMON MEMORY MODULE REV 05  picture

NEW RELIANCE 64K 57C413B COMMON MEMORY MODULE REV 05

$459.97







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