是否可以在viewswitcher中获取当前显示图像的名称/引用/id?
switcher = (ViewSwitcher) findViewById(R.id.viewSwitcher);
[...]
@Override
public boolean onSingleTapUp(MotionEvent e) {
Log.d(TAG, "tell me please, how to get the name/reference/id/etc of the currently displayed image, so i can start a specific action relating to the current image");
return false;
}
谢谢!
托拜厄斯
最佳答案
使用上面的“编辑”按钮对问题帖子进行更改。
至于您的问题,如果您使用的是ViewSwitcher
,我想您可以使用某种指示器来告诉您正在显示哪个屏幕(哪个ViewGroup
)。就像调用switch命令时要修改的int
或boolean
。