Вызов между классами в Blackberry Java - PullRequest
2 голосов
/ 27 января 2012

Я пытаюсь открыть новый экран, когда на экране «щелкают» растровые изображения.Для этого я создал класс из этого поста: Blackberry Clickable BitmapField , частичный код которого я разместил ниже:

public class CustomMenuButtonField extends Field{
    Bitmap normal,focused;

    ...

    protected boolean navigationClick(int status, int time)
    {
        // push new screen
        fieldChangeNotify(0);
        return true;
    }

    ...

Я хочу открыть новый экран, когда пользователь нажимает набитовая карта.Я ознакомился с этой веткой: Связь между классами , но я все еще не могу понять команды для вызова новой экранной команды.Пользовательский интерфейс, который у меня есть на данный момент:

public class UserInterface extends UiApplication {
    public static void main(String[] args){
        UserInterface theApp = new UserInterface();
        theApp.enterEventDispatcher();
    }
    public UserInterface() {
        pushScreen(new UserInterfaceScreen());
    }
}

final class UserInterfaceScreen extends MainScreen {
    public UserInterfaceScreen() {
    ...

Какая будет команда для открытия нового экрана, и, что более важно, где я смогу работать с ним?Я знаю, что, вероятно, следует использовать pushScreen (), но это не распознается в этом классе.Буду ли я создавать новый конечный класс NewScreenFromClick extends MainScreen ?и если да, то как бы я это назвал и поместил в eventDispatcher.Я просматривал сайт BlackBerry, но у них не так много примеров кода по этому вопросу, и я очень плохо знаком с Java, так что это меня довольно смущает.

Ответы [ 4 ]

2 голосов
/ 30 января 2012
    imageField imageField = new imageField ("",Field.FOCUSABLE,"image.png","image.png", 0x102839);
    add(imageField );
    FieldChangeListener listener = new FieldChangeListener() {
    public void fieldChanged(Field field, int context) {
            if (field == imageField ) {
    home home = new home();//your screen
    UiApplication.getUiApplication().pushScreen(home);

                  }
                }
                         };
imageField .setChangeListener(listener);

// класс поля изображения указан ниже

package com.pl.button;

import net.rim.device.api.ui.*;
import net.rim.device.api.system.*;

public class imagefield extends Field {

private String _label;
private int _labelHeight;
private int _labelWidth;
private Font _font;

private Bitmap _currentPicture;
private Bitmap _onPicture; 
private Bitmap _offPicture; 
int color;

public imagefield (String text, long style ,String img, String img_hvr, int color){
    super(style);


    _offPicture = Bitmap.getBitmapResource(img);
    _onPicture = Bitmap.getBitmapResource(img_hvr);

    _font = getFont();
    _label = text;
    _labelHeight = _onPicture.getHeight();  
    _labelWidth = _onPicture.getWidth();

    this.color = color;

    _currentPicture = _offPicture;
}

/**
 * @return The text on the button
 */
String getText(){
    return _label;
}

/**
 * Field implementation.
 * @see net.rim.device.api.ui.Field#getPreferredHeight()
 */
public int getPreferredHeight(){
    return _labelHeight;
}

/**
 * Field implementation.
 * @see net.rim.device.api.ui.Field#getPreferredWidth()
 */
public int getPreferredWidth(){
    return _labelWidth;
}

/**
 * Field implementation.  Changes the picture when focus is gained.
 * @see net.rim.device.api.ui.Field#onFocus(int)
 */
protected void onFocus(int direction) {
    _currentPicture = _onPicture;
    invalidate();
}

/**
 * Field implementation.  Changes picture back when focus is lost.
 * @see net.rim.device.api.ui.Field#onUnfocus()
 */
protected void onUnfocus() {
    _currentPicture = _offPicture;
    invalidate();
}

/**
 * Field implementation.  
 * @see net.rim.device.api.ui.Field#drawFocus(Graphics, boolean)
 */
protected void drawFocus(Graphics graphics, boolean on) {
    // Do nothing
}

/**
 * Field implementation.
 * @see net.rim.device.api.ui.Field#layout(int, int)
 */
protected void layout(int width, int height) {
    setExtent(Math.min( width, getPreferredWidth()), 
    Math.min( height, getPreferredHeight()));
}

/**
 * Field implementation.
 * @see net.rim.device.api.ui.Field#paint(Graphics)
 */
protected void paint(Graphics graphics){       
    // First draw the background colour and picture
    graphics.setColor(this.color);
    graphics.fillRect(0, 0, getWidth(), getHeight());
    graphics.drawBitmap(0, 0, getWidth(), getHeight(), _currentPicture, 0, 0);

    // Then draw the text
    graphics.setColor(Color.BLACK);
    graphics.setFont(_font);
    graphics.drawText(_label, 4, 2, 
        (int)( getStyle() & DrawStyle.ELLIPSIS | DrawStyle.HALIGN_MASK ),
        getWidth() - 6 );
}

/**
 * Overridden so that the Event Dispatch thread can catch this event
 * instead of having it be caught here..
 * @see net.rim.device.api.ui.Field#navigationClick(int, int)
 */
protected boolean navigationClick(int status, int time){
    fieldChangeNotify(1);
    return true;
}

}

2 голосов
/ 27 января 2012

Вы можете использовать:

UiApplication.getUiApplication().pushScreen(new HomeScreen());

Если ваше приложение не делает ничего странного, UiApplication.getUiApplication () всегда возвращает объект UiApplication для вашей программы. Это одиночный объект, созданный для каждого контекста UiApplication.

Вы также можете использовать:

UserInterface.getUiApplication().pushScreen(new HomeScreen());

Если класс UserInterface видим для класса, над которым вы работаете, но это сделает ваш код менее пригодным для повторного использования.

Я собрал несколько основных примеров в своем блоге. Посмотрите на эту страницу . Начните снизу и продолжайте свой путь.

1 голос
/ 27 января 2012

Попробуйте следующий код, который я добавил UserInterfaceScreen. Когда создается UserInterfaceScreen, он добавляет CustomMenuButtonField и устанавливает прослушиватель изменения поля. Когда кнопка нажата, она переносит новый экран в стек

package mypackage;

import net.rim.device.api.ui.UiApplication;

public class UserInterface extends UiApplication {
public static void main(String[] args){
    UserInterface theApp = new UserInterface();
    theApp.enterEventDispatcher();
}
public UserInterface() {
    pushScreen(new UserInterfaceScreen());
}
}

Это UserInterfaceScreen

package mypackage;

import net.rim.device.api.ui.Field;
import net.rim.device.api.ui.FieldChangeListener;
import net.rim.device.api.ui.UiApplication;
import net.rim.device.api.ui.container.MainScreen;

public class UserInterfaceScreen extends MainScreen {

public UserInterfaceScreen() {
    super();
    //replace null with the image string
    CustomMenuButtonField button = new CustomMenuButtonField(null, null);
    button.setChangeListener(new FieldChangeListener() {

        public void fieldChanged(Field field, int context) {
            UiApplication.getUiApplication().pushScreen(new         MyHomeScreen());

        }
    });
}
}
0 голосов
/ 30 января 2012

Посмотрите ответ в ссылке ниже, которую я разместил (alishaik786):

Кликабельное растровое изображение;

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...