我的代码的目标是将 ImageView 移动到单击项目的中心,以某种方式“突出显示”它。为此,我试图获取列表视图的单击项目的 Y 坐标。我的代码是:
private OnItemClickListener listview_auto_listener = new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> arg0, View view, int position,
long arg3) {
int[] coords = new int[2];
view.getLocationOnScreen(coords);
// We need just the top coordinate
int top = coords[1];
// And bottom
moveSelectedCar(top);
}
};
其中 moveSelectedCar 是:
private void moveSelectedCar(int new_y) {
TranslateAnimation _tAnim = new TranslateAnimation(
TranslateAnimation.RELATIVE_TO_SELF,
TranslateAnimation.RELATIVE_TO_SELF, last_y, new_y);
_tAnim.setInterpolator(new DecelerateInterpolator());
_tAnim.setDuration(800);
_tAnim.setFillAfter(true);
_tAnim.setFillEnabled(true);
img_selected_car.startAnimation(_tAnim);
last_y = new_y;
}
问题是这不会返回单击项目的中心。