首先,请尝试理解我的问题,因为我知道他们有太多与此相关的问题,但就我而言,没有人在工作
为什么我不知道,请看我的代码。
这是有效的
public final class MyScreen extends MainScreen implements FieldChangeListener
{
private combine enter_in;
private manager_s ms , ms_1 ;
private Bitmap img;
LabelField lb_1 , lb_2 , lb_3 ;
public MyScreen()
{
setTitle("MyTitle");
img = Bitmap.getBitmapResource("icon.png");
//Bitmap img_1 = Bitmap.getBitmapResource("icon.png");
enter_in = new combine ( Field.FOCUSABLE , img );
enter_in.setChangeListener(this);
ms = new manager_s( 0 , 4 );
ms.add(enter_in);
lb_1 = new LabelField("Menu") ;
lb_2 = new LabelField("Favorites") ;
lb_3 = new LabelField("Reserved") ;
ms.add(lb_1);
ms.add(lb_2);
ms.add(lb_3);
add(ms);
}
}
但是当我实现 FieldChangedListener 时,当时ms.delete(lb_1)
不工作但delete(ms)
正在工作,请帮助解决这个问题
public void fieldChanged(Field field, int context)
{
if ( field == enter_in )
{
ms.delete(lb_1);
}
}
所以,我要问的是,ms.delete(lb_1) 有什么理由不能在 MyScreen 类下工作。
看到这是我使用的 manager_class,Manager (custom_manager),这个 manager 由我的类扩展,用于在屏幕内添加字段
public class manager_s extends Manager
{
int col ;
int w_1 = 20 ;
protected manager_s(long style , int col )
{
super(style);
this.col = col ;
}
protected void sublayout(int width, int height)
{
for ( int i = 0 ; i < col ; i ++ )
{
Field field = getField (i);
layoutChild( field , 130 , 100 );
}
for ( int i = 0 ; i < col ; i ++ )
{
Field field = getField (i);
setPositionChild ( field , w_1 , 20 );
w_1 = w_1 + 135 ;
setExtent ( width , 200 );
}
}
}
并且错误是INDEX_OUT_OF_BOUND_EXCEPTION,这就是我的问题,因为互联网上的每个人(作为资源)都在说删除该字段,但我的情况是没有任何工作。