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


WPI ISOMIL Optically isolated high-impedence millivoltmeter picture

WPI ISOMIL Optically isolated high-impedence millivoltmeter

$216.91



Fluke  845AR High Impedance Voltmeter-Null Detector picture

Fluke 845AR High Impedance Voltmeter-Null Detector

$500.00



ECOS Model 1020-1 Electrical Ground Impedance And Tester Safety Analyze and more picture

ECOS Model 1020-1 Electrical Ground Impedance And Tester Safety Analyze and more

$28.00



IMPEDENCE MATCHING TRANSFOMER BNC F-BNC F, 50 OHM TO 75 OHM, 20-1100 MHZ picture

IMPEDENCE MATCHING TRANSFOMER BNC F-BNC F, 50 OHM TO 75 OHM, 20-1100 MHZ

$28.00



Audio Impedance Tester Portable CATIII Test Ranges 20/200/2000 Resistance Meter picture

Audio Impedance Tester Portable CATIII Test Ranges 20/200/2000 Resistance Meter

$80.74



SynVivo Cell Impedance Analyzer Catalog # 304001 picture

SynVivo Cell Impedance Analyzer Catalog # 304001

$1307.66







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